在 Java 中将 StringBuffer 转换为字节数组
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试以下操作。
印刷
You can try the following.
prints
让我们把问题分解,然后向后推算。
您知道:
int
转换为byte
(假设前者在范围内)?String
转换为int
?我怀疑您能够单独完成这些任务中的任何一个。只需按顺序(以相反的顺序)执行所有这些操作即可产生您正在寻找的解决方案。
Let's break the problem down, and work backwards here.
Do you know:
int
into abyte
(assuming the former is in range)?String
into anint
?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>