gpt4 book ai didi

Java 字节数组转换问题

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:59:50 25 4
gpt4 key购买 nike

我有一个字符串,其中包含一系列位(如“01100011”)和 while 循环中的一些整数。例如:

while (true) {
int i = 100;
String str = Input Series of bits

// Convert i and str to byte array
}

现在我想要一种最快的方法将字符串和整数转换为字节数组。到目前为止,我所做的是将 int 转换为 String,然后对两个字符串应用 getBytes() 方法。但是,它有点慢。有没有比这(可能)更快的其他方法?

最佳答案

您可以使用 Java ByteBuffer上课!

例子

byte[] bytes = ByteBuffer.allocate(4).putInt(1000).array();

关于Java 字节数组转换问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10051867/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com