如何在 Java 中将 char 从字母字符转换为十六进制数字?

发布于 2024-10-08 09:36:27 字数 110 浏览 3 评论 0原文

如何在 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 技术交流群。

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

发布评论

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

评论(3

人间☆小暴躁 2024-10-15 09:36:27

您可以将 char 转换为十六进制字符串。

char ch = 
String hex = String.format("%04x", (int) ch);

要读取十六进制并转换为二进制,你可以这样做

int num = Integer.parseInt(text, 16);
String bin = Integer.toString(num, 2);

You can convert from char to hex string.

char ch = 
String hex = String.format("%04x", (int) ch);

To read hex and convert to binary you can do

int num = Integer.parseInt(text, 16);
String bin = Integer.toString(num, 2);
栀子花开つ 2024-10-15 09:36:27

您可以使用:

Integer.toHexString((int) 'a');
Integer.toBinaryString((int) 'b');

更新:十六进制 - >二进制转换:

Integer.toBinaryString(Integer.parseInt("fa", 16))

You could use:

Integer.toHexString((int) 'a');
Integer.toBinaryString((int) 'b');

Update: hex -> binary conversion:

Integer.toBinaryString(Integer.parseInt("fa", 16))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文