在执行IO时,Java的InputStream被广泛使用,比如DataInputStream.readInt等等。事实上,这些高度封装的接口奇慢无比。我有一个项目启动时需要读取90MB左右的词典文件,用DataInputStream耗时3秒以上,换用java.nio包直接操作内存字节,可以加速到300ms左右,整整提速10倍!当然,前提是你熟悉位运算。
java.nio中提供了两类 FileChannel 和 ByteBuffer来将文件映射到内存,其中FileChannel表示文件通道,ByteBuffer是一个缓冲区。
具体步骤
①从FileInputStream、FileOutputStream以及RandomAccessFile对象获取文件通道
②将文件内存映射到ByteBuffer
③通过byteBuffer.array()接口得到一个byte数组
④直接操作字节
示例代码
代码如下 | 复制代码 |
FileInputStream fis = new FileInputStream(path); // 1.从FileInputStream对象获取文件通道FileChannel FileChannel channel = fis.getChannel(); int fileSize = (int) channel.size(); // 2.从通道读取文件内容 ByteBuffer byteBuffer = ByteBuffer.allocate(fileSize); // channel.read(ByteBuffer) 方法就类似于 inputstream.read(byte) // 每次read都将读取 allocate 个字节到ByteBuffer channel.read(byteBuffer); // 注意先调用flip方法反转Buffer,再从Buffer读取数据 byteBuffer.flip(); // 可以将当前Buffer包含的字节数组全部读取出来 byte[] bytes = byteBuffer.array(); byteBuffer.clear(); // 关闭通道和文件流 channel.close(); fis.close(); int index = 0; size = Utility.bytesHighFirstToInt(bytes, index); index += 4; |
其中,如果你当初使用了DataOutputStream.writeInt来保存文件的话,那么在读取的时候就要注意了。writeInt写入四个字节,其中高位在前,低位在后,所以将byte数组转为int的时候需要倒过来转换:
代码如下 | 复制代码 |
/** |
改变buffer的大小也可以起到使用
代码如下 | 复制代码 |
public static void copy1(File src, File dest) throws Exception { FileInputStream fileInputStream = null; FileOutputStream fileOutputStream = null; try { fileInputStream = new FileInputStream(src); fileOutputStream = new FileOutputStream(dest); byte[] buffer = new byte[8096]; int length = -1; while((length = fileInputStream.read(buffer)) != -1) { fileOutputStream.write(buffer, 0, length);//一次性将缓冲区的所有数据都写出去 fileOutputStream.flush(); } } finally { if(fileInputStream != null) { fileInputStream.close(); } if(fileOutputStream != null) { fileOutputStream.close(); } } } |
茶杯头甜蜜终章dlc 官方手机版v1.0.0.3
下载火柴人传说暗影格斗内置菜单 最新版v3.0.1
下载荒野乱斗测试服 安卓版v61.10.3
下载荒野乱斗彩虹服 安卓版v61.10.3
下载寒霜启示录 安卓版v1.25.10
寒霜启示录是一款生存模拟游戏,不少玩家可能对于末日都有着自己
末日城堡免广告版 安卓最新版v0.7.1
末日城堡免广告版是一款非常好玩的模拟经营类游戏,内部可以不看
甜蜜人生模拟器 最新版v1.4.5
甜蜜人生模拟器是一款非常好玩的模拟恋爱手游,玩家在这里能够对
武器锻造师内置功能菜单 v10.4
武器锻造师内置菜单版是游戏的破解版本,在该版本中为玩家提供了
开放空间overfield 安卓版v1.0.5
开放空间Overfield是一款箱庭养成经营手游,让你在广阔