2

可能吗?

我正在尝试将字符串转换为 4 字节数组。

我看到了一种使用整数的方法:

int i =55555;
ByteBuffer.allocate(4).putInt(i).array();

无法找到使用字符串的方法。

4

1 回答 1

4

有什么问题"5555".getBytes();

或者如果你只想要前 4 个字节

"5555555".substring(0, 4).getBytes();

于 2013-10-01T08:54:56.610 回答