FileChannel fc = new FileInputStream("data.txt").getChannel();ByteBuffer buff = ByteBuffer.allocate(1024);fc.read(buff);buff.flip();?while (buff.hasRemaining())?这里判断当前位置与限制为之间是否有元素,System.out.print((char) buff.ge

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/06 18:31:36
FileChannel fc = new FileInputStream(
xS_OP*Om`d^'`f4g 8ٌ(h1|l!~>+r˲,{mi?U5I麢 XЕea>Ӎ4^"H/$/)x/J̧c1"G4-EXGR0YEq(TU[qz$(IsmpB߁͒/ѾewnKӵܽ ߂)9܄5z-i,cQƑ)IPĜKğh&Є7ҿЌAv磽oP+](Ql}L֛Tݿ;y'C?GmZ_w3u7˼5hBtu唿vU ;lC֡ه|NXky\DMMXrΰ;NX4)I]KY}ϏDcn;V;Vh# -W#ԨSu zܹ{8d>)[87w a40SiSE<g䓇៯9y958܆޾l =yl<>9d8NǶGvۤdMk"ɤ ]x}#BHڡɱ=='2ٮ0IH [#

FileChannel fc = new FileInputStream("data.txt").getChannel();ByteBuffer buff = ByteBuffer.allocate(1024);fc.read(buff);buff.flip();?while (buff.hasRemaining())?这里判断当前位置与限制为之间是否有元素,System.out.print((char) buff.ge
FileChannel fc = new FileInputStream("data.txt").getChannel();
ByteBuffer buff = ByteBuffer.allocate(1024);
fc.read(buff);
buff.flip();?
while (buff.hasRemaining())?这里判断当前位置与限制为之间是否有元素,
System.out.print((char) buff.get());

FileChannel fc = new FileInputStream("data.txt").getChannel();ByteBuffer buff = ByteBuffer.allocate(1024);fc.read(buff);buff.flip();?while (buff.hasRemaining())?这里判断当前位置与限制为之间是否有元素,System.out.print((char) buff.ge
楼主,给你简单分析下:
1、flip()
使缓冲区为一系列新的通道写入或相对获取 操作做好准备:它将限制(limit)设置为当前位置(position),然后将位置(position)设置为 0,将标记mark记为-1.
源码实现如下:
public final Buffer flip()
{
this.limit = this.position;
this.position = 0;
this.mark = -1;
return this;
}
2、hasRemaining()
判断当前位置是否在限制范围内,告知程序在当前位置和限制之间是否有元素,是否继续往下读取数据.
源码如下:
public final boolean hasRemaining()
{
return this.position < this.limit;
}
有问题欢迎提问,