我想在java中构造1,2,3...10...16..字节的字符串数据。我需要将此数据作为 UDP 数据包发送。我可以在发送前选择 1,2,3...10...16.. 字节。
我的代码是这样的:
byte[] byteData = new byte[]{65,66,67,68,69,70,71,72,73,74};
for (int index = 0; index < bytesSize; index++) {
msgToServer = new String(new byte[] { byteData[index] });
stringBuilder.append(msgToServer);
}
我的方向正确吗?