- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个简单的网络 getter 。并且 OP_WRITE 始终触发选择器,因此 select() 永远不会结束。 Select 始终返回 1,等待写入,尽管 channel 已完成其工作并关闭。我该如何处理?我的 CPU 也变得非常高。
代码如下:
public static void main(String [] args)
{
try
{
String adder="";
Selector selector= simpleFetcher.selector;
selector = Selector.open();
Charset charset = Charset.forName("ISO-8859-1");
try{
//add to selector the host and settings
addHost(selector, "localhost", 80);
addHost(selector, "site.org", 80);
} catch (UnresolvedAddressException ex) {System.out.println("Address Not exist "+ex.getMessage());}
while(true)
{
int selectedn = selector.select(2000);
if (selectedn==0)
{
Set<SelectionKey> SelectorKeys = selector.keys();
Iterator<SelectionKey> iterator = SelectorKeys.iterator();
while(iterator.hasNext())
{
SelectionKey k = (SelectionKey) iterator.next();
SocketChannel channel = (SocketChannel) k.channel();
String rHost;
InetAddress addr = channel.socket().getInetAddress();
rHost= addr.getHostAddress();
System.out.println(rHost+" is timeout");
}
System.out.println("adder:"+adder);
selector.close();
System.out.println("No more keys.. Exiting");
return;
}
Set<SelectionKey> selectedKeys = selector.selectedKeys();
Iterator<SelectionKey> iterator = selectedKeys.iterator();
while(iterator.hasNext())
{
SelectionKey key = (SelectionKey) iterator.next();
iterator.remove();
if (key.isValid()==false) {System.out.println("key not valid"); continue;}
try{
if (key.isConnectable())
{
System.out.println("Will connect right now");
SocketChannel channel = (SocketChannel) key.channel();
if (!channel.finishConnect()) { System.out.println("Not finished connection. continue.."); continue; }
if (channel.isConnectionPending()==false && channel.socket().isClosed()==true) System.out.println("CLOSED?");
SelectionKey k = channel.register(key.selector(),SelectionKey.OP_READ);
SelectionKey k2 = channel.register(key.selector(),SelectionKey.OP_WRITE);
//SelectionKey k = channel.register(key.selector(),SelectionKey.OP_READ | SelectionKey.OP_WRITE);
k.attach(ByteBuffer.allocate(4000));
System.out.println("Just Connected");
continue;
}
if (key.isReadable())
{
int readB;
System.out.println("Ready for reading..");
SocketChannel channel = (SocketChannel) key.channel();
ByteBuffer buffer = (ByteBuffer) key.attachment();
CharBuffer charbuffer = buffer.asCharBuffer();
if ((readB=channel.read(buffer)) !=-1)
{
System.out.println("Key accepted - reading..");
int current_capacity=buffer.position();
buffer.flip();
CharBuffer c = charset.decode(buffer);
char[] arr = c.array();
String data = new String(arr);
String[] lines = data.split("\\r\\n\\r\\n");
if (lines.length>1)
{
String header = lines[0];
String rest_body = lines[1];
//System.out.println("Header is: "+header);
//System.out.println("Body is: "+rest_body);
adder+=header+rest_body;
}
else { adder+=new String(arr); }
}
else
{
key.channel().close();
key.cancel();
System.out.println("Key cancled");
System.out.println(adder);
continue;
}
if (readB==0) System.out.println("The READ RETURNS 0");
System.out.println();
buffer.clear();
continue;
}
if (key.isWritable())
{
//System.out.println("Ready to write");
SocketChannel channel = (SocketChannel) key.channel();
String rHost;
Socket s = channel.socket();
s.shutdownOutput();
InetAddress addr = channel.socket().getInetAddress();
rHost= addr.getHostAddress();
//System.out.println(rHost);
if (s.isOutputShutdown()) continue;
String bytestowrite="GET / HTTP/1.1\r\nHost: "+rHost+"\r\nUser-agent: Agent 1.0 Experimental\r\nAccept: */*\r\nAccept-Language: en-US,en;q=0.5\r\nConnection: keep-alive\r\n\r\n";
ByteBuffer buffer = ByteBuffer.wrap(bytestowrite.getBytes());
while(buffer.hasRemaining()) channel.write(buffer);
key.cancel();
continue;
}
} catch (IOException ex) {
System.out.println("EXCEPTION: "+ex.getMessage());
key.cancel();
try { key.channel().close();}
catch (IOException cex) {};
}
System.out.println("End of iterator loop");
}
}
}catch (IOException ex) {System.out.println("Timeout");}
}
最佳答案
套接字 channel 几乎总是可写的,这意味着套接字发送缓冲区中几乎总是有可用空间。只有当发送者跑赢接收者时,这种情况才不再成立。
因此,为 OP_WRITE
注册 channel 是不正确的,除非它们已经经历了缓冲区已满的情况,即如果 write() 返回零,并且 OP_WRITE 应尽快取消注册后续写入已成功。
关于java - 非阻塞 write() 无限 - java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27992762/
我正在执行 UPDATE .WRITE() 语句,并发现它显然只有在您像这样定义它时才有效: string sql = "UPDATE [dbo].[Table] SET [Column].WRITE
我在 Unix 系统上用 C 编程。我知道: write(fd,"ABCD",4); 比这样做更好: write(fd, "A", 1); write(fd, "B", 1); write(fd, "
func hash(s string) uint32 { h := fnv.New32a() h.Write([]byte(s)) return h.Sum32() } 对于这
在经典的 asp 页面中,有人告诉我您可以使用 vbscript 或 jscript。而 jscript 就是 javascript。 所以我不确定 Response.Write、Response.W
当 openssl 子进程尝试 write() 到本地目录时,我收到此错误。在调用 write() 之前连接已关闭。它没有与 ssl 连接,因为我什至无法从 nodejs 文档启动示例代码。 我错过了
最近我在试验netty。我遇到了以下问题: ctx.channel().write(new TextWebSocketFrame("hello")) 没有在客户端返回 hello,但是 ctx.cha
请解释以下内容: def feed(data): import os print "DATA LEN: %s" % len(data) f = open("copy", "w") f.
有什么区别debug.write 和 Trace.write ?每个应该什么时候使用? 最佳答案 在典型的发布构建配置中,Debug class 被禁用并且什么都不做。 Trace但是,仍然可以在发行
我只是想知道,就性能而言,哪个更好(我在 FileStream 中使用 StreamWriter): 多次调用 Stream.Write(): StreamWriter sw = new Stream
我发现自己写给 stringwriter,然后在函数末尾执行 resp.Write(sw.ToString())。这是不必要的吗?如果我多次使用 HttpResponse.Write,即使我的页面是
我正在尝试通过 JavaScript 文件从 electron 打开一个新窗口,它可以工作,并打开了新窗口,但我无法将 HTML/文本写入新文件。我收到那个错误: Cannot read proper
我们对 QIODevice::write 的一般行为和具体的 QTcpSocket 实现感到非常困惑。有一个 similar question已经,但答案并不令人满意。主要的混淆源于分别提到的 byt
我知道这听起来像是一个愚蠢的问题: write(*,*) 和 write(6,*) ?我在我研究所的 super 计算机上运行一个复杂的代码,它通过一个不同于 6 的单元号输出一个数据文件,显然编译的
我有一个结构体,它可以通过一系列复杂的方法调用转换为文本,其中包含大量 write!调用。此文本可以写入文件或调试日志。我正在决定是否使用 fmt::Write 或 io::Write .我不能真正使
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
In the C standard library, an output can't be followed by an input and vice versa. 对于Linux API,可以在re
我希望能够为一件事做 document.write。然后延迟半秒,然后再记录。写一些。你知道这是否可能吗?而且,如果是这样,怎么办?到目前为止,我已经尝试过了,但没有奏效: document.writ
为什么通过 onclick 属性调用的 write() 函数解析为 document.write() 并替换文档?有什么办法可以阻止这种情况发生吗? Write Function Alternat
我想创建一个包含多个“页面”的文本文件,并将每个页面的字节偏移量记录在一个单独的文件中。为此,我将字符串打印到主输出文件并使用 bytes_written += file.write(str) 计算字
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 8 年前。 Improve this qu
我是一名优秀的程序员,十分优秀!