示例#1
0
 @Override
 public LimitedFileChannel position(long l) throws IOException {
   return new LimitedFileChannel(inner.position(l), fs);
 }
示例#2
0
 @Override
 public long position() throws IOException {
   return inner.position();
 }