溫馨提示×

java創(chuàng)建目錄和文件的方法是什么

小億
134
2024-04-12 10:18:33
欄目: 編程語言

在Java中,可以使用File類來創(chuàng)建目錄和文件。以下是創(chuàng)建目錄和文件的方法示例:

  1. 創(chuàng)建目錄:
File dir = new File("path/to/directory");
if (!dir.exists()) {
    dir.mkdirs();
    System.out.println("目錄已創(chuàng)建");
} else {
    System.out.println("目錄已存在");
}
  1. 創(chuàng)建文件:
File file = new File("path/to/file.txt");
try {
    if (file.createNewFile()) {
        System.out.println("文件已創(chuàng)建");
    } else {
        System.out.println("文件已存在");
    }
} catch (IOException e) {
    System.out.println("創(chuàng)建文件時(shí)出現(xiàn)異常");
    e.printStackTrace();
}

請將上述示例中的"path/to/directory"和"path/to/file.txt"替換為實(shí)際的目錄和文件路徑。在創(chuàng)建文件時(shí)需要處理IOException異常。

0