其他分享
首页 > 其他分享> > 保存文件到本地(NIO实现——Channel、Buffer)

保存文件到本地(NIO实现——Channel、Buffer)

作者:互联网

目标:

        向本地保存文件,若本地已经存在该文件,则进内容更新为最新的内容,若指定目录没有该文件,则创建新文件。

示例如下:

public class NIOFileChannelTest {
    public static void main(String[] args) throws IOException {
         String str = "hello dylan";
        FileOutputStream fileOutputStream = new FileOutputStream("D:\\YC\\Demo_Nio\\fileChannel.txt");

        //通过fileOutPutStream获取对应的Channel
        FileChannel fileChannel = fileOutputStream.getChannel();
        //创建一个缓冲区BytebBuffer
        ByteBuffer byteBuffer = ByteBuffer.allocate(1024);
        //将str放入byteBuffer
        byteBuffer.put(str.getBytes());
        //将byteBuffer进行flip
        byteBuffer.flip();
        //将byteBuffer数据写入fileChannel
        fileChannel.write(byteBuffer);
        fileOutputStream.close();
    }

}

标签:文件,NIO,str,Buffer,fileChannel,fileOutputStream,byteBuffer,ByteBuffer,Channel
来源: https://blog.csdn.net/m0_55865810/article/details/122190622