你能告诉我一个简单的例子,从名为example.txt的文件中读取并使用java NIO将所有内容放入我的 java 程序中的字符串中吗?
以下是我目前使用的:
FileChannel inChannel = FileChannel.open(Paths.get(file),StandardOpenOption.READ);
CharBuffer buf=ByteBuffer.allocate(1024).asCharBuffer();
while(inChannel.read(buf)!=-1) {
buf.flip();
while(buf.hasRemaining()) {
//append to a String
buf.clear();
}
}
Helenr
相关分类