关于eclipse:用Java创建文件

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中创建文件。


试试这段代码片段。

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();