摘要: MappedByteBuffer是java nio引入的文件内存映射方案,读写性能极高。在NIO中主要用到普通的输入流,带缓冲的输入流,RandomAccessFile和MappedByteBuffer。 @Test public void mmapTest() throws Exception { 阅读全文
posted @ 2022-07-08 14:24 VipSoft 阅读(993) 评论(0) 推荐(0)
摘要: System.out.printf 格式化输出16进制内容 @Test public void printTest() throws Exception { String str = "安倍晋三已无生命体征!!"; print(str.getBytes()); } public static voi 阅读全文
posted @ 2022-07-08 14:03 VipSoft 阅读(286) 评论(0) 推荐(0)