while (true) { int i = 100; String str = Input Series of bits // Convert i and str to byte array }
现在我想要一个很好的最快方法将字符串和int转换为字节数组.到目前为止,我所做的是将int转换为String,然后对两个字符串应用getBytes()方法.但是,它有点慢.有没有其他方法可以做到(可能)比那更快?
例
byte[] bytes = ByteBuffer.allocate(4).putInt(1000).array();