缓冲区本质上是一块可以写入数据,然后可以从中读取数据的内存。Channel 通道就是将数据传输给 ByteBuffer 对象或者从 ByteBuffer 对象获取数据进行传输。
    Channel 用于在字节缓冲区和位于通道另一侧的实体(通常是一个文件或套接字)之间有效地传输数据。常用Channel有FileChannel、SocketChannel、DatagramChannel、ServerSocketChannel
Socket 可以通过socket 通道的工厂方法直接创建。但是FileChannel 对象却只能通过在一个打开的 RandomAccessFile、FileInputStream 或 FileOutputStream对象上调用 getChannel( )方法来获取。
通道可以以阻塞(blocking)或非阻塞(nonblocking)模式运行。只有面向流的(stream-oriented)的通道,如 sockets 和 pipes 才能使用非阻塞模式。 1.打开通道 a.打开FileChannel,以RandomAccessFile为例 :
            RandomAccessFile aFile = new RandomAccessFile("G:\\we.txt", "rw");
FileChannel inChannel = aFile.getChannel();

b.打开SocketChannel:

SocketChannel socketChannel = SocketChannel.open();
socketChannel.connect(new InetSocketAddress("127.0.0.1",9011));

c.打开ServerSocketChannel

ServerSocketChannel ssc = ServerSocketChannel.open( );
ssc.socket( ).bind (new InetSocketAddress (9011));

 2.使用通道

a.使用FileChannel从指定文件中读取数据:
/**
* @author monkjavaer
* @date 2018/10/18 21:00
*/
public class ChannelTest { public static void main(String[] args) { //RandomAccessFile、FileInputStream 或 FileOutputStream的close()会同时关闭chanel。 try (RandomAccessFile aFile = new RandomAccessFile("F:\\test.txt", "rw")) {
//1.FileChannel 对象却只能通过在一个打开的 RandomAccessFile、FileInputStream 或 FileOutputStream对象上调用 getChannel( )方法来获取
//2.三个 socket 通道类:SocketChannel、ServerSocketChannel 和 DatagramChannel有可以直接创建新 socket 通道的工厂方法
//随机流, mode 的值可选 "r":可读,"w" :可写,"rw":可读写;
FileChannel inChannel = aFile.getChannel(); ByteBuffer buf = ByteBuffer.allocate(48); int bytesRead = inChannel.read(buf);
while (bytesRead != -1) {
//通过flip()方法将Buffer从写模式切换到读模式
buf.flip();
while (buf.hasRemaining()) {
System.out.print((char) buf.get());
}
//两种方式能清空缓冲区:调用clear()或compact()方法,clear()方法会清空整个缓冲区。compact()方法只会清除已经读过的数据
buf.clear();
bytesRead = inChannel.read(buf);
} } catch (IOException e) {
e.printStackTrace();
}
}
}

 b.在两个通道中复制数据:

/**
* 在通道之间复制数据
* @author monkjavaer
* @date 2018/10/18 21:12
*/
public class ChannelCopy { public static void main(String[] argv) throws IOException {
FileInputStream inputStream = new FileInputStream("G:\\test.txt");
FileChannel inChanel = inputStream.getChannel();
FileOutputStream outputStream = new FileOutputStream("G:\\copyTest.txt");
FileChannel outChanel = outputStream.getChannel();
//channelCopy1 channelCopy2方法都是两个通道复制数据
channelCopy1(inChanel, outChanel);
// channelCopy2 (inChanel, outChanel);
inChanel.close();
outChanel.close();
} /**
*
* @param inChanel
* @param outChanel
* @throws IOException
*/
private static void channelCopy1(FileChannel inChanel, FileChannel outChanel) throws IOException {
ByteBuffer buffer = ByteBuffer.allocateDirect(16 * 1024); //将数据从输入通道读入缓冲区
while (inChanel.read(buffer) != -1) {
// buffer切换到读模式
buffer.flip(); while (buffer.hasRemaining()) {
//如果buffer中有数据就将数据写入输出通道
outChanel.write(buffer);
}
// buffer切换到写模式,确保缓冲区为空,准备继续填充数据
buffer.clear();
}
} private static void channelCopy2(FileChannel inChanel, FileChannel outChanel) throws IOException {
ByteBuffer buffer = ByteBuffer.allocateDirect(16 * 1024);
while (inChanel.read(buffer) != -1) {
// Prepare the buffer to be drained
buffer.flip();
// Write to the channel; may block
outChanel.write(buffer);
// If partial transfer, shift remainder down
// If buffer is empty, same as doing clear( )
buffer.compact();
}
// EOF will leave buffer in fill state
buffer.flip();
// Make sure that the buffer is fully drained
while (buffer.hasRemaining()) {
outChanel.write(buffer);
}
}

 c.注意:一个连接到只读文件的 Channel 实例不能进行写操作,即使该实例所属的类可能有 write( )方法;FileChannel 实现 ByteChannel

下面是ByteChannel的源码:

public interface ByteChannel
extends ReadableByteChannel, WritableByteChannel
{ }

可以看到ByteChannel其实什么也不做,这样设计起到了聚集的作用。

FileChannel 接口既有write也有read方法,为何说不能写呢?那是当使用只读流获取通道时:

/**
* @author monkjavaer
* @date 2018/10/18 21:15
*/
public class ChannelOnlyReadTest {
public static void main(String[] args) {
try {
ByteBuffer buffer = ByteBuffer.allocate(48);
// 但是从 FileInputStream 对象的getChannel( )方法获取的 FileChannel 对象是只读的,因为 FileInputStream 对象总是以 read-only 的权限打开文件
FileInputStream input = new FileInputStream ("G:\\we.txt");
FileChannel channel = input.getChannel( );
// 抛出 java.nio.channels.NonWritableChannelException
channel.write (buffer);
//FileInputStream的close同时会关闭chanel
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}

 上面的代码运行会报错:java.nio.channels.NonWritableChannelException

因为:从 FileInputStream 对象的getChannel( )方法获取的 FileChannel 对象是只读的,因为 FileInputStream 对象总是以 read-only 的权限打开文件。所以没有写权限。

之前我们用ServerSocket创建服务器的栗子中服务器是阻塞的。那NIO怎么实现非阻塞呢?

上面讲的FileChannel 是非阻塞的,因为没有依靠SelectableChannel 超类。全部 socket 通道类(DatagramChannel、 SocketChannel 和 ServerSocketChannel) 都可以设置成非阻塞的。
  这里就要用到SelectableChannel 的方法

public abstract SelectableChannel configureBlocking(boolean block)
throws IOException;

  通道设置configureBlocking方法为false就表示非阻塞模式。

下面是一个客服端和服务器代码说明;

客服端:

/**
* @author monkjavaer
* @date 2018/10/18 21:08
*/
public class ScoketChannelClient { public static void main(String[] args) { SocketChannel socketChannel = null; try {
ByteBuffer buffer = ByteBuffer.wrap ("客服端".getBytes());
//获取SocketChannel
socketChannel = SocketChannel.open();
//设置通道为非阻塞
socketChannel.configureBlocking(false);
//连接
socketChannel.connect(new InetSocketAddress("127.0.0.1",9011)); //connect(InetSocketAddress) 等价于 open(InetSocketAddress)
//SocketChannel socketChannel = SocketChannel.open(new InetSocketAddress("127.0.0.1",9010)); //一些判断
if (!socketChannel.isBlocking()){
System.out.println("非阻塞");
}
while (!socketChannel.finishConnect()){
System.out.println("连接没有建立");
}
System.out.println("连接已建立");
if (socketChannel.isConnected()){
System.out.println("连接已建立");
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
assert socketChannel != null;
socketChannel.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}

 服务器:

package com.nio.java;

import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel; /**
* ServerSocketChannel
* @author monkjavaer
* @date 2018/10/18 21:29
*/
public class ChannelAccept
{
public static final String HELLO = "Hello I am server.\r\n";
public static void main (String [] argv)throws Exception{
int port = 9011;
if (argv.length > 0) {
port = Integer.parseInt (argv [0]);
}
ServerSocketChannel serverSocketChannel = ServerSocketChannel.open( );
serverSocketChannel.socket( ).bind (new InetSocketAddress (port));
//非阻塞模式
serverSocketChannel.configureBlocking (false);
while (true) {
System.out.println ("Waiting for connections");
//如果以非阻塞模式被调用,当没有传入连接在等待时,ServerSocketChannel.accept( )会立即返回 null
SocketChannel sc = serverSocketChannel.accept( );
if (sc == null) {
// 没有连接。。。睡觉
Thread.sleep (2000);
} else {
System.out.println ("Incoming connection from: "+ sc.socket().getRemoteSocketAddress( ));
//wrap buffer的另一种创建方式
ByteBuffer buffer = ByteBuffer.wrap (HELLO.getBytes( ));
//可以使用 rewind()后退,重读已经被flip()的缓冲区中的数据。
buffer.rewind( );
sc.write (buffer);
}
}
}
}

 Scatter/Gather( ScatteringByteChannel 和 GatheringByteChannel
    矢量化的 I/O 使您可以在多个缓冲区上自动执行一个 I/O 操作。使用多个而不是单个缓冲区来保存数据的读写方法。处理复杂数据结构时用。

JAVA NIO 之Channel的更多相关文章

  1. Java NIO -- 通道 Channel

    通道(Channel):由 java.nio.channels 包定义的.Channel 表示 IO 源与目标打开的连接.Channel 类似于传统的“流”.只不过 Channel本身不能直接访问数据 ...

  2. Java NIO 之 Channel(通道)

    历史回顾: Java NIO 概览 Java NIO 之 Buffer(缓冲区) 其他高赞文章: 面试中关于Redis的问题看这篇就够了 一文轻松搞懂redis集群原理及搭建与使用 一 Channel ...

  3. 【Java nio】Channel

    package com.slp.nio; import org.junit.Test; import java.io.*; import java.nio.ByteBuffer; import jav ...

  4. java nio之channel

    一.通道(Channel):由 java.nio.channels 包定义的.Channel 表示 IO 源与目标打开的连接.Channel 类似于传统的“流”.只不过 Channel本身不能直接访问 ...

  5. Java NIO教程 Channel

    Channel是一个连接到数据源的通道.程序不能直接用Channel中的数据,必须让Channel与BtyeBuffer交互数据,才能使用Buffer中的数据. 我们用FileChannel作为引子, ...

  6. 《JAVA NIO》Channel

    3.通道 Channle主要分为两类:File操作对应的FIleChannel和Stream操作对应的socket的3个channe. 1.这3个channel都是抽象类.其具体实现在SPI里面. 2 ...

  7. (转)[疯狂Java]NIO:Channel的map映射

    原文出自:http://blog.csdn.net/lirx_tech/article/details/51396268 1. 通道映射技术: 1) 其实就是一种快速读写技术,它将通道所连接的数据节点 ...

  8. 关于java nio的channel读写的一个困惑

    这里提的需求基本都是IM的,IM的解决方案是怎么样的? 网上的需求: 1. 某一用户发了一条信息, 需要服务器反回一个信息(这种最简单) 2. 某一用户发了一条信息,需要服务器广播给所有客户端 3. ...

  9. JAVA NIO Selector Channel

    These four events are represented by the four SelectionKey constants: SelectionKey.OP_CONNECT Select ...

随机推荐

  1. Parameterized testing with any Python test framework

    1. 在进行单元测试时,很多时候需要进行参数化 尝试过使用 from nose_parameterized import parameterized 但在使用过程中会报错,后来将上面的内容改为了下面的 ...

  2. 区间DP UVA 1351 String Compression

    题目传送门 /* 题意:给一个字符串,连续相同的段落可以合并,gogogo->3(go),问最小表示的长度 区间DP:dp[i][j]表示[i,j]的区间最小表示长度,那么dp[i][j] = ...

  3. eclipse安装提示错误:Failed to load JNI shared library "D:\jdk1.7\client\jvm.dll"

    错误截图如下 原因是jdk32位,eclipse64位导致,修改jdk版本为64位或者修改ecipse版本为32位即可.

  4. 在C语言中模仿java的LinkedList集合的使用(不要错过哦)

    在C语言中,多个数据的储存通常会用到数组.但是C语言的数组有个缺陷,就是固定长度,超过数组的最大长度就会溢出.怎样实现N个数储存起来而不被溢出呢. 学过java的都知道,java.util包里有一个L ...

  5. CentOS 7.4 下搭建 Elasticsearch 6.3 搜索群集

    上个月 13 号,Elasticsearch 6.3 如约而至,该版本和以往版本相比,新增了很多新功能,其中最令人瞩目的莫过于集成了 X-Pack 模块.而在最新的 X-Pack 中 Elastics ...

  6. 93. [NOIP2001] 数的划分

    问题描述 将整数n分成k份,且每份不能为空,任意两种方案不能相同(不考虑顺序). 例如:n=7,k=3,下面三种分法被认为是相同的. 1,1,5; 1,5,1; 5,1,1; 问有多少种不同的分法. ...

  7. bootstrap3无间距栅格/grid no-gutter

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8&quo ...

  8. DecorView 的创建

    在Activity 的启动过程中,调用ActivityThread 的handleResumeActivity 方法时,先得到一个与Activity 关联的PhoneWindow 对象,然后通过Pho ...

  9. HDU_2079_(01背包)(dfs)

    选课时间(题目已修改,注意读题) Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) ...

  10. spring aop 内部调用问题解决

    方法1: 基于 proxy 的 spring aop 带来的内部调用问题可以使用 AopContext.currentProxy() 强转为当前的再调用就可以解决了 例如: 错误用法:public A ...