码迷,mamicode.com
首页 > 其他好文 > 详细

读取本地文本写入list

时间:2014-10-14 20:46:29      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   sp   on   ad   line   bs   new   

/**
* 读取15151433862----123456文档
* @param f
*/
private static void findContent(File f){
String line = null;
try {
BufferedReader br = null;
try {
br = new BufferedReader(new InputStreamReader(new FileInputStream(f), "gbk"));
} catch (UnsupportedEncodingException e1) {
e1.printStackTrace();
}
try {
line = br.readLine();
while(line != null){
//读取一行记录,发送http请求
String[] strArr = line.split("----");
//System.out.println(strArr[0] +"======="+ strArr[1]+"======="+strArr[2]);
try {
modify(strArr[0],strArr[1],strArr[2]);
} catch (Exception e) {
e.printStackTrace();
}
line = br.readLine();

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

}

 

 

//测试
public static void main(String[] args) throws Exception {

File filename = new File("D:/号码.txt");

}

读取本地文本写入list

标签:http   io   ar   sp   on   ad   line   bs   new   

原文地址:http://www.cnblogs.com/yy123/p/4024920.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!