📅  最后修改于: 2023-12-03 14:42:17.877000             🧑  作者: Mango
在 Java 中,可以使用 File 类和相关的 API 来创建文件。以下是创建一个文件的基本步骤:
File file = new File("path/to/file.txt");
if (!file.getParentFile().exists()) {
file.getParentFile().mkdirs();
}
if (file.createNewFile()) {
System.out.println("File is created successfully.");
} else {
System.out.println("File already exists.");
}
完整代码示例:
import java.io.File;
import java.io.IOException;
public class CreateFileExample {
public static void main(String[] args) {
File file = new File("path/to/file.txt");
try {
if (!file.getParentFile().exists()) {
file.getParentFile().mkdirs();
}
if (file.createNewFile()) {
System.out.println("File is created successfully.");
} else {
System.out.println("File already exists.");
}
} catch (IOException e) {
System.out.println("An error occurred.");
e.printStackTrace();
}
}
}
注意事项: