JDK:java读文件的一点见解
2008-01-05 08:28:08 来源:WEB开发网核心提示: 做开发的经常碰到文件的操作,非凡是文件的“读”操作,JDK:java读文件的一点见解,在java中,读文件有很多种方法,使用该方法的效率就明显高得多,另外,有FileReader、BufferReader等,当然
做开发的经常碰到文件的操作,非凡是文件的“读”操作。在java中,读文件有很多种方法,有FileReader、BufferReader等,当然,各种方法的效率是不一样的,FileReader经BufferReader包装后效率明显提高,在个别时候,我们可以用java.nio包进行文件操作,如下:
PRivate static String fileReader(File fileName) {
String fileContent = null;
FileInputStream fis = null;
FileChannel fc = null;
try {
fis = new FileInputStream(fileName);
// get a file channel
fc = fis.getChannel();
// create a ByteBuffer that is large enough
// and read the contents of the file into it
// test
// System.out.println(fc.size());
ByteBuffer bb = ByteBuffer.allocate((int) fc.size() + 1);
fc.read(bb);
bb.flip();
// save the content of the file as a String
// if we want to change the encode
// we can directly add a second parameter here
// which is of course more efficent
// System.out.println(bb.capacity());
fileContent = new String(bb.array());
} catch (Exception e) {
e.printStackTrace();
} finally {
// release the FileChannel
try {
fc.close();
} catch (Exception ex) {
}
try {
fis.close();
} catch (Exception ex) {
}
}
// write out the contents of this file
return fileContent;
}
使用这种方法有个致命的弱点,当所读文件较大时,将消耗大量内存,甚至发生OutOfMemory Error,而当文件较小时,使用该方法的效率就明显高得多。
另外,欢迎大家到我的blog,更多经典文章等你来看http://blog.csdn.net/hdy007/
PRivate static String fileReader(File fileName) {
String fileContent = null;
FileInputStream fis = null;
FileChannel fc = null;
try {
fis = new FileInputStream(fileName);
// get a file channel
fc = fis.getChannel();
// create a ByteBuffer that is large enough
// and read the contents of the file into it
// test
// System.out.println(fc.size());
ByteBuffer bb = ByteBuffer.allocate((int) fc.size() + 1);
fc.read(bb);
bb.flip();
// save the content of the file as a String
// if we want to change the encode
// we can directly add a second parameter here
// which is of course more efficent
// System.out.println(bb.capacity());
fileContent = new String(bb.array());
} catch (Exception e) {
e.printStackTrace();
} finally {
// release the FileChannel
try {
fc.close();
} catch (Exception ex) {
}
try {
fis.close();
} catch (Exception ex) {
}
}
// write out the contents of this file
return fileContent;
}
使用这种方法有个致命的弱点,当所读文件较大时,将消耗大量内存,甚至发生OutOfMemory Error,而当文件较小时,使用该方法的效率就明显高得多。
另外,欢迎大家到我的blog,更多经典文章等你来看http://blog.csdn.net/hdy007/
[]
- ››JavaScript拖拽原理的实现
- ››javascript事件列表解说
- ››Javascript代码优化工具UglifyJS
- ››Java Bean属性值动态设置
- ››JavaScript Confirm 失效的解决办法
- ››JavaScript页面内拖拽原理分析
- ››javascript中select的常用操作
- ››javascript+css无刷新实现页面样式的更换
- ››Java Web Services:不使用客户端证书的WS-Securit...
- ››Java开发2.0: 使用Amazon SimpleDB实现云存储,第...
- ››Java异常处理及其应用
- ››Java中遍历大容量map的正确方法
赞助商链接