java在txt文本中读写数据

从一个txt文本中读数据,对读取数据进行处理后,写入另一个txt文本中

import java.io.*;
public class write {
    public static void main(String[] args){
//        待读文件
        File file = new File("D:\\moreno_health.edge");
//        待写文件
        File fnew=new File("D:\\health.edge");
//        创建字符输出流对象
        FileWriter fw=null;
        BufferedReader reader = null;
        String[] elementStrings;
        try {
//            创建file文件关联的字符输入缓冲流
            reader = new BufferedReader(new FileReader(file));
            String tempString = null;
//            文件不存在则创建文件
            if(!file.exists())
                file.createNewFile();
//            创建fnew文件关联的流
            fw = new FileWriter(fnew);
//            使用readLine方法,一次读一行
            while ((tempString = reader.readLine()) != null) {
//                以数组形式存放读取的内容
                elementStrings =tempString.split(" ");
//                讲读取内容写入文件中
                fw.write(elementStrings[0]+" "+elementStrings[1]+"\n");
//                将缓冲区中的数据发送出去,不必等到缓冲区满
                fw.flush();
            }
//            关闭流
            reader.close();
            fw.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值