Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能吗?
我正在尝试将字符串转换为 4 字节数组。
我看到了一种使用整数的方法:
int i =55555; ByteBuffer.allocate(4).putInt(i).array();
无法找到使用字符串的方法。
有什么问题"5555".getBytes();
"5555".getBytes();
或者如果你只想要前 4 个字节
"5555555".substring(0, 4).getBytes();