Java创建新文件
Java如何创建一个新的文件?
解决方法
这个例子演示了通过使用File()构造函数和File类的file.createNewFile()方法创建一个新文件。
import java.io.File; import java.io.IOException; public class Main { public static void main(String[] args) { try{ File file = new File("C:/myfile.txt"); if(file.createNewFile()) System.out.println("Success!"); else System.out.println ("Error, file already exists."); } catch(IOException ioe) { ioe.printStackTrace(); } } }
结果
上面的代码示例将产生以下结果(如果“myfile.txt不存在)
Success!