java NIO

学习地址:http://ifeve.com/overview/


基本例子:

import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.ByteBuffer;

//使用FileChannel读取数据到buffer,从buffer写入数据到FileChannel
public class FileChannel {

    public static void main(String[] args) throws IOException {
        RandomAccessFile aFile=new RandomAccessFile("/Users/bjhl/test.txt","rw");
        java.nio.channels.FileChannel inChannel=aFile.getChannel();
        ByteBuffer buf=ByteBuffer.allocate(48);
        int bytesRead=inChannel.read(buf);//写数据到buffer,返回写入的总字节数
        while(bytesRead!=-1){//若读到了-1,表示到达了文件尾
            System.out.println("Read "+bytesRead);
            buf.flip();//将buffer的写模式切换为读模式
            
            while(buf.hasRemaining()){
                System.out.print((char)buf.get());//读buffer数据
            }
            buf.clear();//清空缓冲区,让它可以再次被写入(其实数据并未清除,只是position设置为0,limit设置为capacity的值)
            bytesRead=inChannel.read(buf);
        }        
        
        //写数据到channel
        String newData="New String to write to file..."+System.currentTimeMillis()+"\n";
        buf.put(newData.getBytes());
        buf.flip();
        while(buf.hasRemaining()){
            inChannel.write(buf);
        }
        aFile.close();
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值