gpt4 book ai didi

java - 如何创建文件并写入文件?

转载 作者:行者123 更新时间:2023-12-02 01:31:52 27 4
gpt4 key购买 nike

最简单的方法是什么 create and write to a (text) file in Java

最佳答案

请注意,下面的每个代码示例都可能抛出 IOException。为了简洁起见,省略了 Try/catch/finally block 。请参阅this tutorial有关异常处理的信息。

请注意,下面的每个代码示例都会覆盖该文件(如果该文件已存在)

创建文本文件:

PrintWriter writer = new PrintWriter("the-file-name.txt", "UTF-8");
writer.println("The first line");
writer.println("The second line");
writer.close();

创建二进制文件:

byte data[] = ...
FileOutputStream out = new FileOutputStream("the-file-name");
out.write(data);
out.close();

Java 7+ 用户可以使用 Files写入文件的类:

创建文本文件:

List<String> lines = Arrays.asList("The first line", "The second line");
Path file = Paths.get("the-file-name.txt");
Files.write(file, lines, StandardCharsets.UTF_8);
//Files.write(file, lines, StandardCharsets.UTF_8, StandardOpenOption.APPEND);

创建二进制文件:

byte data[] = ...
Path file = Paths.get("the-file-name");
Files.write(file, data);
//Files.write(file, data, StandardOpenOption.APPEND);

关于java - 如何创建文件并写入文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57551624/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com