黑马程序员技术交流社区
标题:
ByteBuffer写入数组BufferUnderflowException异常 求解
[打印本页]
作者:
高梦晓
时间:
2013-4-15 20:35
标题:
ByteBuffer写入数组BufferUnderflowException异常 求解
chf是前文的一个FileChannel
ByteBuffer buf = ByteBuffer.allocate(50);
chf.read(buf);
buf.flip();
byte [] byt = new byte[100];
buf.get(byt);
然后就出来了 :
Exception in thread "main" java.nio.BufferUnderflowException
at java.nio.HeapByteBuffer.get(Unknown Source)
at java.nio.ByteBuffer.get(Unknown Source)
at Sample.main(Sample.java:22)
请问这怎么办
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2