FileChannel ByteBuffer和散列文件

FileChannel ByteBuffer和散列文件,第1张

FileChannel ByteBuffer和散列文件

3条建议:

1)每次读取后清除缓冲区

while (fc.read(bbf) != -1) {    md.update(bbf.array(), 0, bytes);    bbf.clear();}

2)不要同时关闭fc和fis,这是多余的,关闭fis就足够了。FileInputStream.close API说:

If this stream has an associated channel then the channel is closed as well.

3)如果您想通过使用FileChannel来提高性能

ByteBuffer.allocateDirect(1024);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5600782.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存