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

如果我想在 C:/a/b/test.txt中创建一个文件,我可以这样做吗:

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

另外,我想使用 FileOutputStream来创建文件。那我该怎么做?由于某种原因,文件没有在正确的目录中创建。

422122 次浏览

在写入之前,您需要确保父目录的存在。

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

用途:

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

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

最好的方法是:

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

这将在目录中创建一个新文件

使用 爪哇7,你可以使用 PathPathsFiles:

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

在指定路径中创建新文件

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


}

程序输出:

文件创建成功

一个更好更简单的方法:

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

来源

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

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

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

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。

要使用 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();
}
}

当您通过文件输出流写入文件时,将自动创建该文件。但要确保创建了所有必要的目录(文件夹)。

    String absolutePath = ...
try{
File file = new File(absolutePath);
file.mkdirs() ;
//all parent folders are created
//now the file will be created when you start writing to it via FileOutputStream.
}catch (Exception e){
System.out.println("Error : "+ e.getmessage());
}