在基于Java NIO的分布式系统中使用String还是Object作为数据?
我正在尝试在使用 Java NIO 的分布式系统中发送不同的数据(安全密钥、加密消息)。我的问题是发送数据的最佳方式是什么? 。我目前正在使用 base64 编码发送数据,并将不同的数据附加到单个字符串中。这是好还是使用java可序列化对象发送数据会好。
请帮忙 谢谢
I am trying to send data different data (Security keys, encrypted message )in distributed system that use Java NIO. my question is what is the best way to send data? . I am currently sending data using base64 encoding and append different data in to a single string. Is this good or it will be good to send data using java serializable object.
please help
Thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可能会避免使用字符串和 Java 默认序列化——这可能效率很低,并且会带来大量开销。
我建议您查看像 Kryonet 或 Netty 这样的库。
或者,您可以使用 NIO 创建自己的序列化代码,但这非常复杂并且需要大量工作......
I would probably avoid using Strings and Java default serialization - that's likely to be pretty inefficient and give you a lot of overhead.
I'd recommend looking at a library like Kryonet or Netty instead.
Alternatively you can create your own serialisation code using NIO, but that's quite complex to get right and a lot of work....