gpt4 book ai didi

java - 如何在java中将对象序列化为非阻塞套接字

转载 作者:行者123 更新时间:2023-11-29 06:14:10 26 4
gpt4 key购买 nike

我一直在阅读有关 java nio 和非阻塞套接字的内容,我想将序列化对象写入套接字中。我在这里读这篇文章http://www.owlmountain.com/tutorials/NonBlockingIo.htm#_Toc524339525 ,它说如果你将非阻塞套接字包裹在 PrintWriter 周围,它将阻塞。我想知道如果我将 socket.getOutputStream 包裹在 ObjectOutputStream 周围是否一样?有什么简单的方法可以测试包装器是否会阻塞?我在 PrintWriter 或 ObjectOutputStream 文档中找不到对此的任何提及。

这是上面文章中的代码片段:

else if ( key.isWritable() ) {

Socket socket = (Socket) key.attachment();

PrintWriter out = new PrintWriter( socket.getOutputStream(), true );

out.println( "What is your name? " );
}

最佳答案

不确定您是否错过了它,但这篇文章清楚地表明,使用的任何常规 I/O 实用程序都不会切入并显示用于从异步 channel 读取和写入文本的示例代码。以下是相关摘录:

The problem with this code is that the PrintWriter blocks I/O and does not support the underlying asynchronous I/O mechanisms. To deal with this problem, we cannot use any of the standard I/O utilities, but instead must wrap our message in a ByteBuffer object and send it through the SocketChannel object

该代码是否不适用于您的情况?

你说:

I am trying to figure out how to convert an object into a byte[]. Strings have the getBytes() method. I am not sure what to use for a general serializable Object. I have been using ObjectOutput/InputStream classes but according to the article, if I use them, it will be blocking again. Am I understanding this correctly?

你是对的;用 ObjectInputStream/ObjectOutputStream 包装 I/O 流会再次导致阻塞。这里的解决方案可能是将 ByteArrayOutputStream 包装在 ObjectOutputStream 中,然后将您的对象写入底层字节数组。这个底层字节流/数组现在具有对象的字节表示(显然遵循 Java 序列化规范)。从那时起,它就是 NIO 的常规产品。如果您有兴趣,可以进行一些不错的讨论 herehere与我正在谈论的事情相关。

编辑:另外,我同意文章作者的观点,即 NIO 很难做到正确。作者推荐 Apache Mina,但我想添加另一个推荐,“Jboss Netty”。 Netty 的作者经常访问 SO,因此您的疑问可以得到解答。

我还想指出,如果您的动机是跨 Java 对象发送,请使用针对这些需求调整的框架,即 Java RMI 或 JBoss 远程处理。比处理对象流等要容易得多。

关于java - 如何在java中将对象序列化为非阻塞套接字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5720568/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com