小编典典

用Java编写文本文件的最简单方法是什么?

java

我想知道用Java编写文本文件最简单(最简单)的方法是什么。请保持简单,因为我是初学者:D

我在网上搜索并找到了此代码,但我了解其中的50%。

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;

public class WriteToFileExample {
public static void main(String[] args) {
    try {

        String content = "This is the content to write into file";

        File file = new  File("C:/Users/Geroge/SkyDrive/Documents/inputFile.txt");

        // if file doesnt exists, then create it
        if (!file.exists()) {
            file.createNewFile();
        }

        FileWriter fw = new FileWriter(file.getAbsoluteFile());
        BufferedWriter bw = new BufferedWriter(fw);
        bw.write(content);
        bw.close();

        System.out.println("Done");

    } catch (IOException e) {
        e.printStackTrace();
    }
}

}


阅读 134

收藏
2020-11-16

共1个答案

小编典典

在Java
7及更高版本中,一个使用Files的衬板:

String text = "Text to save to file";
Files.write(Paths.get("./fileName.txt"), text.getBytes());
2020-11-16