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!