0

首先,我看到Java 相当于 Python 的 struct.pack?...这是一个澄清。

我是 Java 新手,并试图反映我在 Python 中使用的一些技术。我正在尝试通过网络发送数据,并希望确保我知道它的样子。在 python 中,我会使用 struct.pack。例如:

data = struct.pack('i', 10) 
data += "Some string"
data += struct.pack('i', 500)
print(data)

这将以字节顺序打印打包部分,中间是纯文本字符串。

我试图用 ByteBuffer 复制它:

String somestring = "Some string";
ByteBuffer buffer = ByteBuffer.allocate(100);
buffer.putInt(10);
buffer.put(somestring.getbytes());
buffer.putInt(500);
System.out.println(buffer.array());

我不明白哪一部分?

4

2 回答 2

1

这听起来比你真正需要的要复杂。

我建议使用DataOutputStreamand BufferedOutputStream

DataOutputStream dos = new DataOutputStream(
                       new BufferedOutputStream(socket.getOutputStream()));
dos.writeInt(50);
dos.writeUTF("some string"); // this includes a 16-bit unsigned length
dos.writeInt(500);

这避免了通过直接写入流来创建比需要更多的对象。

于 2013-08-20T16:54:47.267 回答
0

如果使用https://github.com/raydac/java-binary-block-parser那么代码会容易得多

JBBPOut.BeginBin().Int(10).Utf8("Some string").Int(500).End().toByteArray();
于 2014-07-26T16:30:32.310 回答