Java中如何从十进制整数中获取十六进制值?
我不知道如何从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
如果您尝试将整数 131 转换为十六进制字符串,您可以尝试
它将返回“83”作为字符串。
If you are trying to convert integer 131 to a hex string, you can try
It will return "83" as String.
这是一个例子:
Here's one example:
您是否尝试过查看 Java整数API。以下是一些示例:
Have you tried checking out the Java Integer API. Here are a couple of examples:
转换时我没有看到问题:
返回 83。
I don't see a problem, when converting:
returns 83.
有两种可能性,您的打印机需要 0x83 作为字节或字符串/字符
作为字节发送:
或发送 0x83 的字符串表示形式:
Two possibilities, either your printer needs 0x83 as a byte or as string/char
Send as a byte:
Or send a string representation of 0x83: