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

读取文件

时间:2014-05-14 02:16:11      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:class   c   ext   a   文件   string   

public String BufferedReaderDemo(String path) throws IOException...{
File file=new File(path);
if(!file.exists()||file.isDirectory())
throw new FileNotFoundException();
BufferedReader br=new BufferedReader(new FileReader(file));
String temp=null;
StringBuffer sb=new StringBuffer();
temp=br.readLine();
while(temp!=null)...{
sb.append(temp+" ");
temp=br.readLine();
}
return sb.toString();
}

读取文件,布布扣,bubuko.com

读取文件

标签:class   c   ext   a   文件   string   

原文地址:http://www.cnblogs.com/garygou/p/3723944.html

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