JAVA获取txt文件内容

时间:2024-11-11 12:33:10
1 import ; 2 import ; 3 import ; 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 = ())!=null){//使用readLine方法,一次读一行 18 result = result + "\n" +s; 19 } 20 (); 21 }catch(Exception e){ 22 (); 23 } 24 return result; 25 } 26 27 public static void main(String[] args){ 28 File file = new File("D:/luceneData/"); 29 (txt2String(file)); 30 } 31 }