java中如何将字符串转换为字节?
如何将字符串“01001000”(例如)转换为字节并将其转换为字符串。
示例:
如果 string =“0110000101100010”,则输出必须为“ab”,
因为 a == 01100001 且 b == 01100010
How to make string "01001000"(for example) to byte and convert it to string.
Example :
if string = "0110000101100010" then output must be "ab"
because a == 01100001 and b == 01100010
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样:
或者如果你有一个字符串,它具有精确的 8 位 * x 字母。
something like this:
or if you have one String which has exact 8-bit * x letter.
将会输出--> ab
Will output --> ab