如何在 Java 中将 char 从字母字符转换为十六进制数字?
如何在 Java 中将 char 从字母字符转换为十六进制数字?如果有人知道 Java 中任何内置方法可以完成这项工作,或者如果您有自己的方法,您能帮忙吗?
另外,如何将十六进制转换为二进制?
How do I convert a char from an alphabetical character to hexadecimal number in Java? If any one knows any built-in methods in Java that does the job or if you have your own method, could you please help?
Also, how would I convert from hex to binary?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将 char 转换为十六进制字符串。
要读取十六进制并转换为二进制,你可以这样做
You can convert from char to hex string.
To read hex and convert to binary you can do
您可以使用:
更新:十六进制 - >二进制转换:
You could use:
Update: hex -> binary conversion:
使用 apache commons 编解码器库
具体来说:
http://commons.apache.org/codec /apidocs/org/apache/commons/codec/binary/Hex.html
Use the apache commons codec library
Specifically:
http://commons.apache.org/codec/apidocs/org/apache/commons/codec/binary/Hex.html