Is it possible in java to create a file without extension
You can try
File f;
f=new File("myfile");
if(!f.exists()){
f.createNewFile();
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With