我需要一种方法来做到这一点
String username = "Snake";
int usernameLength = username.length(); // 5
将其转换为
0x05
如果结果少于两个数字,我应该使用for循环来获取每个数字并添加零吗?
答案 0 :(得分:1)
试试ByteBuffer
班级......
byte[] byteArray = ByteBuffer.allocate(1).putInt(username.length()).array();