package com.yqjr.nbs.car.af.ln.util;
import com.yqjr.nbs.car.af.ln.dto.InvoiceInfoDto;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
/**
* txt文件读写工具类
* @date 2018-03-29
*
*/
public class WriterAndReadUtil {
/**
* @param url 读取文件路径
**/
public List<String> read(String url) throws Exception{
File file = new File(url);
//FileReader fr = null;
InputStreamReader fr = null;
BufferedReader br = null;
List<String> contents= new ArrayList<String>();
try {
fr = new InputStreamReader(new FileInputStream(file), "UTF-8");
br = new BufferedReader(fr);
String line = br.readLine();
while (line != null) {
System.out.println(line);
contents.add(line);
line = br.readLine();
}
} catch (IOException e) {
e.printStackTrace();
throw e;
} finally {
try {
br.close();
fr.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return contents;
}
/**
* @param contents 写入txt文件内容
* @param url 文件存储路径
* @param YYYYMM 文件每行内容中包含的时间
*/
public static void write(List<InvoiceInfoDto> contents, String url, String YYYYMM) throws Exception{
File file = new File(url);
File parent = file.getParentFile();
if(parent==null||!parent.exists()){
parent.mkdirs();
}
FileWriter fw = null;
BufferedWriter bw = null;
try {
fw = new FileWriter(file);
bw = new BufferedWriter(fw);
for (int i = 0; i < contents.size(); i++) {
String content = contents.get(i).getRegisterno();
content += "@|@";
content += String.valueOf(contents.get(i).getCode());
content += "@|@";
content += YYYYMM;
content += "@|@";
content += contents.get(i).getEmail();
bw.write(content);
bw.newLine();// 光标换行
}
bw.flush();// 清空缓冲区内容
} catch (IOException e) {
e.printStackTrace();
throw e;
} finally {
try {
bw.close();
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
/**
* 测试
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
WriterAndReadUtil writerAndReadUtil = new WriterAndReadUtil();
String url = "E:\\read.txt";
writerAndReadUtil.read(url);
System.out.print("read");
List<InvoiceInfoDto> arg = new ArrayList<InvoiceInfoDto>();
InvoiceInfoDto l = new InvoiceInfoDto();
l.setRegisterno("asdsads");
l.setCode("456");
arg.add(l);
writerAndReadUtil.write(arg, "E:\\write.txt", "201803");
System.out.println();
}
}
txt文件读写工具类
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 原文链接[http://www.ikeguang.com/?p=182] R语言可以读取很多文件,其中以txt文本...
- 请在你的CP Pascal Editor里面做下面文章中的测试哦。 首先通过一个例子来展示pascal读写txt文...
- 1.概述 在平时自动化测试工作中,经常会用python对一些文件进行读写操作。其中使用最多的文件格式,就是txt,...