读取文件和写文件(本地文件)

该文章展示了如何使用Java进行本地文件的读写操作。在读取文件时,它通过FileReader和InputStreamReader读取指定路径的JSON文件,并存储到StringBuilder中,然后转换为JSONObject。在写文件部分,文章创建了一个新的文本文件data.txt,并写入了指定数据。
摘要由CSDN通过智能技术生成

读取文件和写文件(本地文件)

  1. 读取本地文件
 StringBuilder stringBuffer = null;
 try {
     // 本地文件地址
     String path = "C:\\Users\\Ld\\Desktop\\response.json";
     File file = new File(path);
     FileReader fileReader = new FileReader(file);
     Reader reader = new InputStreamReader(new FileInputStream(file), "UTF-8");
     int ch = 0;
     stringBuffer = new StringBuilder();
     while ((ch = reader.read())!= -1){
         stringBuffer.append((char) ch);
     }
     fileReader.close();
     reader.close();
 } catch (IOException e) {
     throw new RuntimeException(e);
 }
 jsonObject = JSONObject.parseObject(stringBuffer.toString());uffer.toString());
  1. 给本地写文件
 try {
    File file = new File("D:\\data.txt");
    if(!file.exists()) {
        file.createNewFile(); // 创建新文件,有同名的文件的话直接覆盖
    }
    FileOutputStream fos = new FileOutputStream(file,true);
    OutputStreamWriter osw = new OutputStreamWriter(fos);
    BufferedWriter bw = new BufferedWriter(osw);
    bw.write("数据");
    bw.newLine();
    bw.flush();
    bw.close();
    osw.close();
    fos.close();
} catch (IOException e) {
    throw new RuntimeException(e);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值