如何在Java目录中创建文件?


156

如果要在中创建文件C:/a/b/test.txt,可以执行以下操作:

File f = new File("C:/a/b/test.txt");

另外,我想FileOutputStream用于创建文件。那我该怎么办呢?由于某种原因,该文件未在正确的目录中创建。

Answers:


245

最好的方法是:

String path = "C:" + File.separator + "hello" + File.separator + "hi.txt";
// Use relative path for Unix systems
File f = new File(path);

f.getParentFile().mkdirs(); 
f.createNewFile();

35
不适用于Linux,因为在Unix系统中没有“ C:”之类的东西。
马塞洛(Marcelo)

33
使用new File("/a/b/test.txt")这两个系统的工程。在Windows上,它将被写入与JVM运行所在的磁盘。
BalusC,

6
f.getParentFile().mkdirs(); f.createNewFile();
Patrick Bergner 2014年

1
不要忘记检查调用方法(mkdirs和createNewFile)调用错误
亚历山德罗S.

1
if(!file.exists())f.createNewFile();
Mehdi

50

您需要在写入之前确保父目录存在。您可以通过执行此操作File#mkdirs()

File f = new File("C:/a/b/test.txt");
f.getParentFile().mkdirs();
// ...

38

随着Java 7中,你可以使用PathPaths以及Files

import java.io.IOException;
import java.nio.file.FileAlreadyExistsException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

public class CreateFile {

    public static void main(String[] args) throws IOException {
        Path path = Paths.get("/tmp/foo/bar.txt");

        Files.createDirectories(path.getParent());

        try {
            Files.createFile(path);
        } catch (FileAlreadyExistsException e) {
            System.err.println("already exists: " + e.getMessage());
        }
    }
}

12

用:

File f = new File("C:\\a\\b\\test.txt");
f.mkdirs();
f.createNewFile();

注意,我将Windows文件系统中路径的正斜杠更改为双反斜杠。这将在给定路径上创建一个空文件。


1
在Windows上,\\和/均有效。在createNewFile()当你写它是不必要的方式FileOutputStream呢。
BalusC

@Eric注意并纠正,谢谢。
马塞洛(Marcelo)

这将创建一个名为test.txt的目录,而不是文件。
MasterJoe2 '18 -10-17

3

一种更好,更简单的方法:

File f = new File("C:/a/b/test.txt");
if(!f.exists()){
   f.createNewFile();
}

资源


2
String path = "C:"+File.separator+"hello";
String fname= path+File.separator+"abc.txt";
    File f = new File(path);
    File f1 = new File(fname);

    f.mkdirs() ;
    try {
        f1.createNewFile();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

这应该在目录内创建一个新文件


0

在指定路径中创建新文件

import java.io.File;
import java.io.IOException;

public class CreateNewFile {

    public static void main(String[] args) {
        try {
            File file = new File("d:/sampleFile.txt");
            if(file.createNewFile())
                System.out.println("File creation successfull");
            else
                System.out.println("Error while creating File, file already exists in specified path");
        }
        catch(IOException io) {
            io.printStackTrace();
        }
    }

}

程序输出:

文件创建成功


0

令人惊讶的是,许多答案没有给出完整的工作代码。这里是:

public static void createFile(String fullPath) throws IOException {
    File file = new File(fullPath);
    file.getParentFile().mkdirs();
    file.createNewFile();
}

public static void main(String [] args) throws Exception {
    String path = "C:/donkey/bray.txt";
    createFile(path);
}

0

要创建文件并在其中写入一些字符串:

BufferedWriter bufferedWriter = Files.newBufferedWriter(Paths.get("Path to your file"));
bufferedWriter.write("Some string"); // to write some data
// bufferedWriter.write("");         // for empty file
bufferedWriter.close();

这适用于Mac和PC。


0

对于使用FileOutputStream,请尝试以下操作:

public class Main01{
    public static void main(String[] args) throws FileNotFoundException{
        FileOutputStream f = new FileOutputStream("file.txt");
        PrintStream p = new PrintStream(f);
        p.println("George.........");
        p.println("Alain..........");
        p.println("Gerard.........");
        p.close();
        f.close();
    }
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.