在 Java 中将 StringBuffer 转换为字节数组

发布于 2024-12-16 21:37:24 字数 521 浏览 0 评论 0原文

我有一个 StringBuffer,strbuf=161656070200000000202020202001000000009E52;

我想转换为如下所示的字节数组:

byte[] byte_array=new byte[]
 {(byte)0x16,(byte)0x16,(byte)0x56,(byte)0x07,
  (byte)0x02,(byte)0x00,(byte)0x00,(byte)0x00,
  (byte)0x00,(byte)0x20,(byte)0x20,(byte)0x20,
  (byte)0x20,(byte)0x20,(byte)0x01,(byte)0x00,
  (byte)0x00,(byte)0x00,(byte)0x00,(byte)0x9E,(byte)0x52};

我需要将 strbuf 转换为 hex 字符串,然后执行 getBytes() 吗? 解决这个问题的正确方法是什么?

I have a StringBuffer,strbuf=161656070200000000202020202001000000009E52;.

I want to convert into a byte array that looks like this:

byte[] byte_array=new byte[]
 {(byte)0x16,(byte)0x16,(byte)0x56,(byte)0x07,
  (byte)0x02,(byte)0x00,(byte)0x00,(byte)0x00,
  (byte)0x00,(byte)0x20,(byte)0x20,(byte)0x20,
  (byte)0x20,(byte)0x20,(byte)0x01,(byte)0x00,
  (byte)0x00,(byte)0x00,(byte)0x00,(byte)0x9E,(byte)0x52};

Do I need to convert strbuf to hex string and then do getBytes()?
What is the right approach to this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

最佳男配角 2024-12-23 21:37:24

您可以尝试以下操作。

final String longHex = "161656070200000000202020202001000000009E52";
byte[] bytes = new BigInteger(longHex, 16).toByteArray();
System.out.println(Arrays.toString(bytes));

印刷

[22, 22, 86, 7, 2, 0, 0, 0, 0, 32, 32, 32, 32, 32, 1, 0, 0, 0, 0, -98, 82]

You can try the following.

final String longHex = "161656070200000000202020202001000000009E52";
byte[] bytes = new BigInteger(longHex, 16).toByteArray();
System.out.println(Arrays.toString(bytes));

prints

[22, 22, 86, 7, 2, 0, 0, 0, 0, 32, 32, 32, 32, 32, 1, 0, 0, 0, 0, -98, 82]
朦胧时间 2024-12-23 21:37:24

让我们把问题分解,然后向后推算。

您知道:

  • 如何将 int 转换为 byte (假设前者在范围内)?
  • 如何将两个字符的String转换为int
  • 如何将长字符串转换为每个两个字符的块?

我怀疑您能够单独完成这些任务中的任何一个。只需按顺序(以相反的顺序)执行所有这些操作即可产生您正在寻找的解决方案。

Let's break the problem down, and work backwards here.

Do you know:

  • How to convert an int into a byte (assuming the former is in range)?
  • How to convert a two-character String into an int?
  • How to convert a long String into chunks of two characters each?

I suspect that you are able to do any of these tasks individually. Simply doing all of them in sequence (in reverse order) will yield the solution you're looking for.

</teaching-to-fish>

伴我老 2024-12-23 21:37:24
String longHex = "....";
byte[] array = new byte[longHex.length() / 2];
for (int i=0; i<array.length; i++){
     Byte byte = Byte.parseByte(longHex.substring(i*2, i*2+2), 16);
     array[i] = byte;
}
String longHex = "....";
byte[] array = new byte[longHex.length() / 2];
for (int i=0; i<array.length; i++){
     Byte byte = Byte.parseByte(longHex.substring(i*2, i*2+2), 16);
     array[i] = byte;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文