如何把一个java数据保存到txt里面

发布网友 发布时间:2022-04-25 18:15

我来回答

2个回答

热心网友 时间:2023-10-03 05:17

首先创建一个新的txt文件,然后new File(“txt文件路径”),
封装一个输入输出流,将要写入的数据写入到txt中,刷新流,关闭流。
代码如下:
public static void main(String[] args) throws IOException{
String str = "这个项目什么时候上线";
File file;//创建文件夹
FileOutputStream stream = null;//new文件流
try {
file = new File("C:/Users/qisf/Desktop/Aa.txt");
stream = new FileOutputStream (file);//将文件夹放在文件流中
if (!file.exists()) {
file.createNewFile();
}
byte[] contentInBytes = str.getBytes();//转化成字节形
stream.write(contentInBytes);//写入
stream.flush(); //写完之后刷新
stream.close();//关闭流
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}

热心网友 时间:2023-10-03 05:18

/**
 * Created by jack on 2017/1/16.
 */
public class FileDemo {
  public static void main(String[] args) {
    try {
      //如果文件存在,则追加内容;如果文件不存在,则创建文件
      File f = new File("test.txt");
      FileWriter fw = new FileWriter(f, true);

      PrintWriter pw = new PrintWriter(fw);
      //java数据,可以转成json字符串存储
      pw.println("{\"key\":\"value\"}");

      pw.flush();
      pw.close();
      fw.close();
    } catch (IOException e) {
      e.printStackTrace();
    }
  }
}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com