Java中如何从十进制整数中获取十六进制值?

发布于 2024-10-21 08:20:18 字数 332 浏览 4 评论 0原文

我不知道如何从 Java 中的整数值生成十六进制“0x83”字符。

我需要一个“0x83”值来表示西里尔字母中的一个字母(该字母:ѓ),以便将其(该字母)发送到我的打印机。当使用我的转换器(如下)将 131(十进制 0x83)转换为十六进制时,我得到三个数字:0x31、0x33 和 0x31。

public String toHex(String arg) {
    return String.format("%x", new BigInteger(arg.getBytes()));
}

我需要从这个转换中获得 0x83 。

I don't know how to generate a hex "0x83" character from an integer value in Java.

I need a "0x83" value to represent a letter in the Cyrillic alphabet (this letter: ѓ), in order to send it (the letter) to my printer. When converting 131 (0x83 in decimal) into hex with my converter (below) I get three numbers: 0x31, 0x33 and 0x31.

public String toHex(String arg) {
    return String.format("%x", new BigInteger(arg.getBytes()));
}

I need to get 0x83 from this conversion.

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

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

发布评论

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

评论(6

陈独秀 2024-10-28 08:20:18

如果您尝试将整数 131 转换为十六进制字符串,您可以尝试

Integer.toHexString( 131 )

它将返回“83”作为字符串。

If you are trying to convert integer 131 to a hex string, you can try

Integer.toHexString( 131 )

It will return "83" as String.

萌酱 2024-10-28 08:20:18

这是一个例子:

String str = Integer.toHexString(131);
System.out.println(str);

Here's one example:

String str = Integer.toHexString(131);
System.out.println(str);
濫情▎り 2024-10-28 08:20:18
String cyrillic = Character.toString((char)0x83)
String cyrillic = Character.toString((char)0x83)
℉服软 2024-10-28 08:20:18

您是否尝试过查看 Java整数API。以下是一些示例:

Have you tried checking out the Java Integer API. Here are a couple of examples:

软糖 2024-10-28 08:20:18

转换时我没有看到问题:

System.out.println(Integer.toHexString(131));

返回 83。

I don't see a problem, when converting:

System.out.println(Integer.toHexString(131));

returns 83.

情丝乱 2024-10-28 08:20:18

有两种可能性,您的打印机需要 0x83 作为字节或字符串/字符

作为字节发送:

int Cyrillic_int = 131; 
byte Cyrillic = (byte) Cyrillic_int;

或发送 0x83 的字符串表示形式:

int Cyrillic_int = 131;
String Cyrillic = Integer.toHexString(131);

Two possibilities, either your printer needs 0x83 as a byte or as string/char

Send as a byte:

int Cyrillic_int = 131; 
byte Cyrillic = (byte) Cyrillic_int;

Or send a string representation of 0x83:

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