public static String fileReader(File file) throws IOException {
String contants;
FileReader fr =new FileReader(file);
BufferedReader br =new BufferedReader(fr);
//
contants=br.readLine();
while (br.ready()){
contants=contants+br.readLine();
}
fr.close();
br.close();
return contants;
}
相关文章
- 05-16Python中读取csv文件内容方法
- 05-16单例模式的饿汉式读取db.properties文件中的内容
- 05-16Flex读取txt文件中的内容(一)
- 05-167、配置文件、封装读取配置文件的方法
- 05-16python之xml 文件的读取方法
- 05-16xlwings读取一整个excel文件xlsx的第一sheet到pandas.DataFrame的方法
- 05-16webapi读取配置文件内容
- 05-16【PC工具】速度最快最好用的文件搜索工具:everything,更新文件内容搜索方法...
- 05-16Python基础二_操作字符串常用方法、字典、文件读取
- 05-16短代码:分页读取文件中的内容