Java中读取文件的内容,直接上代码:
- public static String readContent(File file){
- StringBuffer strBuf = new StringBuffer();
- String content = new String();
- try {
- BufferedReader bufRea = new BufferedReader(new FileReader(file));
- String s = bufRea.readLine();
- while(s!=null){
- strBuf.append(s);
- s = bufRea.readLine();
- }
- content = strBuf.toString().replaceAll("\\s*", "");
- } catch (FileNotFoundException e) {
- logger.error("ParseJson==>readContent(File file)----文件没找到---",e.getCause());
- e.printStackTrace();
- } catch (IOException e) {
- logger.error("ParseJson==>readContent(File file)----I/O输入输出流错误!!!----",e.getCause());
- e.printStackTrace();
- }
- return content;
- }
实现的功能就是将文件中的内容读出来,用字符串存储.
可以修改使用其它的输入输出流,看需求了.BufferReader可以方便的按行读取.
ps:就写这些吧,写了两遍 ,为什么创建新分类必须要刷新下才能显示 ,郁闷,我刷新下,结果代码和下边的文字都没了,下次可要吸取教训了
阅读(1621) | 评论(0) | 转发(0) |