Creating a File in Java
我正在使用Eclipse,我想在我的Web项目中创建一个新文件。
我的日食位置是
1 2 3 4 5 6
| Path:"H:\\eclipse\
ew folder\\Testing_Project\\WebContent\";
File:1.jsp(New File to be created)
File create=new File(Path,File);
create.createNewFile(); |
但这意味着文件没有被创建。它说错误是"(文件名、目录名或卷标签语法不正确)"
有什么方法可以在Java中创建文件。
- stackoverflow.com/questions/2885173/…
- @我试过那些东西,但没用,我希望有人能处理Eclipse。
- 你尝试过Java的EDCOX1 0创建新文件吗?
- @不,我没试过
试试这段代码片段。
1 2 3 4 5 6 7 8 9 10 11 12 13
| try {
File file = new File("H:\\eclipse\
ew folder\\Testing_Project\\WebContent\");
if (file.createNewFile()){
System.out.println("File is created !");
}else{
System.out.println("File already exists. ");
}
} catch (IOException e) {
e.printStackTrace(); |
- 我想创建一个名为"1.jsp"的文件,如何用这个名称创建
- File file = new File("H:\\eclipse\
ew Folder\\Testing_Project\\WebContent\\1.jsp");我想:)顺便说一句,在你问之前,你应该先搜索一下,看看stackoverflow.com/questions/6142901/…或者stackoverflow.com/questions/2885173/…