Netty之JavaNIO编程模型介绍01

从前面可以看出对于 Java 中的基本数据类型(boolean除外),都有一个 Buffer 类型与之相对应,最常用的自然是ByteBuffer 类(二进制数据),该类的主要方法如下

public abstract class ByteBuffer {

//缓冲区创建相关api

public static ByteBuffer allocateDirect(int capacity)//创建直接缓冲区

public static ByteBuffer allocate(int capacity)//设置缓冲区的初始容量

public static ByteBuffer wrap(byte[] array)//把一个数组放到缓冲区中使用

//构造初始化位置offset和上界length的缓冲区

public static ByteBuffer wrap(byte[] array,int offset, int length)

//缓存区存取相关API

public abstract byte get( );//从当前位置position上get,get之后,position会自动+1

public abstract byte get (int index);//从绝对位置get

public abstract ByteBuffer put (byte b);//从当前位置上添加,put之后,position会自动+1

public abstract ByteBuffer put (int index, byte b);//从绝对位置上put

}

在这里插入图片描述

3.2 通道Channel


基本介绍

  1. NIO的通道类似于流,但有些区别如下:

  2. 通道可以同时进行读写,而流只能读或者只能写

  3. 通道可以实现异步读写数据

  4. 通道可以从缓冲读数据,也可以写数据到缓冲

在这里插入图片描述

  1. BIO 中的 stream 是单向的,例如 FileInputStream 对象只能进行读取数据的操作,而 NIO 中的通道(Channel)是双向的,可以读操作,也可以写操作。

  2. Channel在NIO中是一个接口public interface Channel extends Closeable{}

  3. 常用的 Channel 类有:FileChannel、DatagramChannel、ServerSocketChannel 和 SocketChannel。【ServerSocketChanne 类似 ServerSocket , SocketChannel 类似 Socket】

在这里插入图片描述

  1. FileChannel 用于文件的数据读写,DatagramChannel 用于 UDP 的数据读写,ServerSocketChannel 和 SocketChannel 用于 TCP 的数据读写。

FileChannel 类

FileChannel主要用来对本地文件进行 IO 操作,常见的方法有

public int read(ByteBuffer dst) ,从通道读取数据并放到缓冲区中

public int write(ByteBuffer src) ,把缓冲区的数据写到通道中

public long transferFrom(ReadableByteChannel src, long position, long count),从目标通道中复制数据到当前通道

public long transferTo(long position, long count, WritableByteChannel target),把数据从当前通道复制给目标通道

实例1-本地文件写数据

通过前面介绍的内容完成一些简单的NIO文件操作,代码如下:

package com.dpb.netty.nio;

import java.io.FileOutputStream;

import java.nio.ByteBuffer;

import java.nio.channels.FileChannel;

/**

  • @program: netty4demo

  • @description:

  • @author: 波波烤鸭

  • @create: 2019-12-28 11:37

*/

public class NioChannel01 {

public static void main(String[] args) throws Exception{

String str = “hello,bobokaoya”;

//创建一个输出流->channel

FileOutputStream fileOutputStream = new FileOutputStream(“c:\tools\netty.txt”);

//通过 fileOutputStream 获取 对应的 FileChannel

//这个 fileChannel 真实 类型是 FileChannelImpl

FileChannel fileChannel = fileOutputStream.getChannel();

//创建一个缓冲区 ByteBuffer

ByteBuffer byteBuffer = ByteBuffer.allocate(1024);

//将 str 放入 byteBuffer

byteBuffer.put(str.getBytes());

//对byteBuffer 进行flip

byteBuffer.flip();

//将byteBuffer 数据写入到 fileChannel

fileChannel.write(byteBuffer);

fileOutputStream.close();

}

}

在这里插入图片描述

实例2-本地文件读数据

package com.dpb.netty.nio;

import java.io.File;

import java.io.FileInputStream;

import java.nio.ByteBuffer;

import java.nio.channels.FileChannel;

/**

  • @program: netty4demo

  • @description:

  • @author: 波波烤鸭

  • @create: 2019-12-28 11:41

*/

public class NioChannel02 {

public static void main(String[] args) throws Exception {

//创建文件的输入流

File file = new File(“c:\tools\netty.txt”);

FileInputStream fileInputStream = new FileInputStream(file);

//通过fileInputStream 获取对应的FileChannel -> 实际类型 FileChannelImpl

FileChannel fileChannel = fileInputStream.getChannel();

//创建缓冲区

ByteBuffer byteBuffer = ByteBuffer.allocate((int) file.length());

//将 通道的数据读入到Buffer

fileChannel.read(byteBuffer);

//将byteBuffer 的 字节数据 转成String

System.out.println(new String(byteBuffer.array()));

fileInputStream.close();

}

}

在这里插入图片描述

实例3-使用一个Buffer完成文件读取

package com.dpb.netty.nio;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.nio.ByteBuffer;

import java.nio.channels.FileChannel;

/**

  • @program: netty4demo

  • @description:

  • @author: 波波烤鸭

  • @create: 2019-12-28 11:44

*/

public class NioChannel03 {

public static void main(String[] args) throws Exception {

FileInputStream fileInputStream = new FileInputStream(“1.txt”);

FileChannel fileChannel01 = fileInputStream.getChannel();

FileOutputStream fileOutputStream = new FileOutputStream(“2.txt”);

FileChannel fileChannel02 = fileOutputStream.getChannel();

ByteBuffer byteBuffer = ByteBuffer.allocate(512);

while (true) { //循环读取

//这里有一个重要的操作,一定不要忘了

/*

public final Buffer clear() {

position = 0;

limit = capacity;

mark = -1;

return this;

}

*/

byteBuffer.clear(); //清空buffer

int read = fileChannel01.read(byteBuffer);

System.out.println(“read =” + read);

if(read == -1) { //表示读完

break;

}

//将buffer 中的数据写入到 fileChannel02 – 2.txt

byteBuffer.flip();

fileChannel02.write(byteBuffer);

}

//关闭相关的流

fileInputStream.close();

fileOutputStream.close();

}

}

在这里插入图片描述

实例4-拷贝文件transferFrom 方法

接下来我们同transferFrom方法来实现一个文件的复制操作。

package com.dpb.netty.nio;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.nio.channels.FileChannel;

/**

  • @program: netty4demo

  • @description:

  • @author: 波波烤鸭

  • @create: 2019-12-28 11:49

*/

public class NioChannel04 {

public static void main(String[] args) throws Exception {

//创建相关流

FileInputStream fileInputStream = new FileInputStream(“c:\tools\a1.jpg”);

FileOutputStream fileOutputStream = new FileOutputStream(“c:\tools\a2.jpg”);

//获取各个流对应的filechannel

FileChannel sourceCh = fileInputStream.getChannel();

FileChannel destCh = fileOutputStream.getChannel();

//使用transferForm完成拷贝

destCh.transferFrom(sourceCh,0,sourceCh.size());

//关闭相关通道和流

sourceCh.close();

destCh.close();

fileInputStream.close();

fileOutputStream.close();

}

}

在这里插入图片描述

关于Buffer 和 Channel的注意事项和细节

总结

阿里伤透我心,疯狂复习刷题,终于喜提offer 哈哈~好啦,不闲扯了

image

1、JAVA面试核心知识整理(PDF):包含JVMJAVA集合JAVA多线程并发,JAVA基础,Spring原理微服务,Netty与RPC,网络,日志,ZookeeperKafkaRabbitMQ,Hbase,MongoDB,Cassandra,设计模式负载均衡数据库一致性哈希JAVA算法数据结构,加密算法,分布式缓存,Hadoop,Spark,Storm,YARN,机器学习,云计算共30个章节。

image

2、Redis学习笔记及学习思维脑图

image

3、数据面试必备20题+数据库性能优化的21个最佳实践

image
,不闲扯了

[外链图片转存中…(img-gi1JGgad-1719169143147)]

1、JAVA面试核心知识整理(PDF):包含JVMJAVA集合JAVA多线程并发,JAVA基础,Spring原理微服务,Netty与RPC,网络,日志,ZookeeperKafkaRabbitMQ,Hbase,MongoDB,Cassandra,设计模式负载均衡数据库一致性哈希JAVA算法数据结构,加密算法,分布式缓存,Hadoop,Spark,Storm,YARN,机器学习,云计算共30个章节。

[外链图片转存中…(img-3YCZ3Vtb-1719169143147)]

2、Redis学习笔记及学习思维脑图

[外链图片转存中…(img-KHTXjzXk-1719169143148)]

3、数据面试必备20题+数据库性能优化的21个最佳实践

[外链图片转存中…(img-ss5npcms-1719169143148)]

  • 30
    点赞
  • 17
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值