Posted on 2009-06-29 19:28
周竞先 阅读(105)
评论(0) 编辑 收藏 所属分类:
J2SE
1
2 /**
3 * 读取指定文件的内容
4 * @param fileurl 要解析的html文件
5 * @return
6 */
7 public String getContent(String fileurl){
8
9 //读写文件流
10 BufferedReader in;
11
12 String line, contentString = new String();
13
14 try {
15 in = new BufferedReader(new FileReader(fileurl));
16
17 while((line = in.readLine()) != null)
18 contentString += line.trim();
19
20 //关闭流
21 in.close();
22
23 //测试数据打印
24 System.out.println("文件内容:\n"+contentString);
25
26 } catch (FileNotFoundException e) {
27
28 e.printStackTrace();
29 } catch (IOException e) {
30
31 e.printStackTrace();
32 }
33
34 return contentString;
35 }
最后出来的文件内容是一个去掉了空格的字符串
Life,simple and happy!