Я действительно озадачен java nio,
package org.eclipse.java.nio.selector.test;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.SelectionKey;
import java.nio.channels.Selector;
import java.nio.channels.SocketChannel;
import java.util.Iterator;
import java.util.Set;
public class MySelector {
public static void main(String[] args) throws IOException {
// Create selector
Selector selector = null;
selector = Selector.open();
////////////////////////////////////////////////////////////////////////
SocketChannel socketChannel = SocketChannel.open(new InetSocketAddress(
"localhost", 4321));
socketChannel.configureBlocking(false);
socketChannel.register(selector, SelectionKey.OP_READ);
/*
* Let's begin select
*/
while (true) {
int readyChannels = selector.select();
if (readyChannels == 0) continue;
System.out.println("Hello, selector!");
Set readyKeys = selector.selectedKeys();
Iterator it = readyKeys.iterator();
while (it.hasNext()) {
SelectionKey key = (SelectionKey )it.next();
if (key.isReadable()) {
System.out.println("It's readable!");
}
it.remove();
}
}
}
}
Я хочу, чтобы селектор дождался следующего входного события с удаленного сервера, но после того, как сервер ответил на любые слова, это произошло в бесконечном цикле, почему?
я действительно не могу понять, «удалить» не работает?
Я не хочу отменять или закрывать канал, я хочу сохранить соединение, заставить клиента ждать ответа сервера ...