NIO 프로필 및 3 대 구성 요소
4374 단어 데이터 구조
2. 클 라 이언 트
public class SocketChannelDemo {
public static void main(String[] args) throws IOException {
//
SocketChannel sc = SocketChannel.open();
//
sc.configureBlocking(false);
//
// ,
sc.connect(new InetSocketAddress("localhost", 8070));
// ,
while (!sc.isConnected())
// ,
// ,
sc.finishConnect();
//
sc.write(ByteBuffer.wrap("hello server".getBytes()));
//
sc.close();
}
}
3. 서버 쪽
public class ServerSocketChannelDemo {
public static void main(String[] args) throws IOException {
//
ServerSocketChannel ssc = ServerSocketChannel.open();
//
ssc.bind(new InetSocketAddress(8070));
//
ssc.configureBlocking(false);
//
SocketChannel sc = ssc.accept();
//
while (sc == null)
sc = ssc.accept();
//
ByteBuffer buffer = ByteBuffer.allocate(1024);
sc.read(buffer);
//
buffer.flip();
System.out.println(
new String(buffer.array(), 0, buffer.limit()));
//
ssc.close();
}
}
5 selector 다 중 선택 기 1, 안내
서버 쪽
public class Server {
public static void main(String[] args) throws IOException {
//
ServerSocketChannel ssc = ServerSocketChannel.open();
//
ssc.bind(new InetSocketAddress(8070));
//
ssc.configureBlocking(false);
//
Selector selc = Selector.open();
//
ssc.register(selc, SelectionKey.OP_ACCEPT);
while (true) {
//
selc.select();
//
Set keys = selc.selectedKeys();
Iterator it = keys.iterator();
while (it.hasNext()) {
//
SelectionKey key = it.next();
// accept
if (key.isAcceptable()) {
ServerSocketChannel sscx = (ServerSocketChannel) key.channel();
SocketChannel sc = sscx.accept();
System.out.println(" ~~~");
//
sc.configureBlocking(false);
// read
sc.register(selc, SelectionKey.OP_WRITE | SelectionKey.OP_READ);
}
// read
if (key.isReadable()) {
//
SocketChannel sc = (SocketChannel) key.channel();
//
ByteBuffer buffer = ByteBuffer.allocate(1024);
sc.read(buffer);
buffer.flip();
System.out.println(new String(buffer.array(), 0, buffer.limit()));
//
sc.register(selc, key.interestOps() ^ SelectionKey.OP_READ);
}
// write
if (key.isWritable()) {
//
SocketChannel sc = (SocketChannel) key.channel();
sc.write(ByteBuffer.wrap("hi client~~~".getBytes()));
sc.register(selc, key.interestOps() ^ SelectionKey.OP_WRITE);
}
it.remove();
}
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.