6.2 – Creazione di un file vuoto - Ramona-Vasile-JCMaxwell-5Bi/Java-Sockets GitHub Wiki
public static void newFile() {
String path = "C:/html.txt";
try {
File file = new File(path);
if (file.exists())
System.out.println("Il file " + path + " esiste");
else if (file.createNewFile())
System.out.println("Il file " + path + " è stato creato");
else
System.out.println("Il file " + path + " non può essere creato");
} catch (IOException e) {
e.printStackTrace();
}
}