将字符串[]作为字节[]传递

发布于 2024-09-30 09:30:59 字数 238 浏览 3 评论 0原文

我正在一个网络上工作,我的 python 脚本将在其中与我的 java 应用程序进行通信。 python 脚本将 DataPacket(只是一个包含一些字符串和一些其他数据的数据包)传递给 java 服务器进行处理。我知道如何将信息打包到字节数组中,但如何将其解包以用作字符串?到目前为止我所得到的是我必须解析数据包中的数据数组并将其分段发送。这是唯一的方法吗?我可以使用 ByteInputStream 吗?如果可以的话如何使用?

谢谢 ~伊顿

I'm working on a network in which my python script will communicate with my java application. The python script is passing a DataPacket (just a packet that holds some strings and a little other data) to the java server for processing. I know how to pack the information into a byte array, but how do I unpack it to be used as strings? What I've got so far is I have to parse the arrays of data in the packet and send it in bits and pieces. Is this the only way to do this? Can I use ByteInputStream and if so how?

thanks
~Aedon

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

慈悲佛祖 2024-10-07 09:30:59

我不确定你所做的是否正确,因为你将字符串分成单独的数据包。这可能会导致多字节字符串出现问题。

但是,您可能希望查看 ByteArrayOutputStream。您可以写入此内容,然后使用 toString(enc) 转换为字符串,其中 enc 是您在 Python 中用于将字符串转换为字节的编码第一名。

看看下面的评论,您似乎需要一些方法在 Python 中进行序列化并在 Java 中进行反序列化。抛开 XML 序列化等解决方案不谈,您是否研究过 Google Protocol Buffers 等可能的解决方案?

I'm not sure that what you're doing is quite right, in that you're fragmenting your strings into separate packets. This could cause problems with multibyte strings.

However, you may wish to check out ByteArrayOutputStream. You can write into this, then convert to a String using toString(enc), where enc is the encoding you've used in your Python to convert your strings into bytes in the first place.

Looking at your comment below, it appears you need some means to serialise in Python and deserialise in Java. Leaving aside solutions like XML serialisation, have you looked at possible solutions like Google Protocol Buffers ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文