码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA获取txt文件内容

时间:2014-08-24 22:01:03      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:Lucene   style   blog   http   color   java   os   使用   io   

  JAVA 读取txt文件内容

  通常,我们可以直接通过文件流来读取txt文件的内容,但有时可能会出现乱码!此时只要设置一下文件字符编码即可。

  

 1 import java.io.BufferedReader;
 2 import java.io.File;
 3 import java.io.FileReader;
 4 
 5 
 6 public class txttest {
 7     /**
 8      * 读取txt文件的内容
 9      * @param file 想要读取的文件对象
10      * @return 返回文件内容
11      */
12     public static String txt2String(File file){
13         String result = "";
14         try{
15             BufferedReader br = new BufferedReader(new FileReader(file));//构造一个BufferedReader类来读取文件
16             String s = null;
17             while((s = br.readLine())!=null){//使用readLine方法,一次读一行
18                 result = result + "\n" +s;
19             }
20             br.close();    
21         }catch(Exception e){
22             e.printStackTrace();
23         }
24         return result;
25     }
26     
27     public static void main(String[] args){
28         File file = new File("D:/luceneData/test1.txt");
29         System.out.println(txt2String(file));
30     }
31 }

读取文件效果:

bubuko.com,布布扣

JAVA获取txt文件内容

标签:Lucene   style   blog   http   color   java   os   使用   io   

原文地址:http://www.cnblogs.com/xing901022/p/3933417.html

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