java filechannel 空_如何使用java.nio.channels.FileChannel读取ByteBuffer实现类似BufferedReader#readLine()的类似行为...

我想使用

java.nio.channels.FileChannel来读取文件,但我想读取每行的行,就像BufferedReader#readLine()一样.我之所以需要使用java.nio.channels.FileChannel而不是java.io是因为我需要对文件进行锁定,并从该锁定文件中逐行读取.所以我强行使用java.nio.channels.FileChannel.请帮忙

编辑这是我的代码试图使用FileInputStream来获取FileChannel

public static void main(String[] args){

File file = new File("C:\\dev\\harry\\data.txt");

FileInputStream inputStream = null;

BufferedReader bufferedReader = null;

FileChannel channel = null;

FileLock lock = null;

try{

inputStream = new FileInputStream(file);

channel = inputStream.getChannel();

lock = channel.lock();

bufferedReader = new BufferedReader(new InputStreamReader(inputStream));

String data;

while((data = bufferedReader.readLine()) != null){

System.out.println(data);

}

}catch(IOException e){

e.printStackTrace();

}finally{

try {

lock.release();

channel.close();

if(bufferedReader != null) bufferedReader.close();

if(inputStream != null) inputStream.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

当代码在这里时,lock = channel.lock();,它会立即转到finally并且lock仍为null,因此lock.release()会生成NullPointerException.我不知道为什么.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值