我有一个字符串,其中包含一系列位(如“01100011”)和while循环中的一些整数。例如:
while (true) {
int i = 100;
String str = Input Series of bits
// Convert i and str to byte array
}
现在我想要一种将字符串和 int 转换为字节数组的最快方法。到目前为止,我所做的是将方法转换int
为String
然后getBytes()
在两个字符串上应用该方法。但是,它有点慢。还有其他方法可以(可能)比这更快吗?