在java中将单个十六进制字符转换为其字节值

发布于 2024-07-26 22:30:50 字数 195 浏览 2 评论 0原文

我有一个十六进制字符,说

char c = 'A';

将其转换为整数值的正确方法是什么?

int value =??; 
assert(a == 10);

如果 a 是 int 或 byte,现在并不重要。

I have a single hexadecimal character, say

char c = 'A';

What's the proper way of converting that to its integer value

int value =??; 
assert(a == 10);

Doesn't matter really for now if a is an int or a byte.

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

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

发布评论

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

评论(5

美羊羊 2024-08-02 22:30:50

我不明白为什么你应该转换为字符串...事实上,这就是 parseInt 使用的:

公共静态 int 数字(char ch, int radix)

int hv = Character.digit(c,16);
if(hv<0)
    //do something else because it's not hex then.

i don't see why you should have to convert to string... in fact this is what parseInt uses:

public static int digit(char ch, int radix)

int hv = Character.digit(c,16);
if(hv<0)
    //do something else because it's not hex then.
§普罗旺斯的薰衣草 2024-08-02 22:30:50
int value;
try {
    value = Integer.parseInt(Character.toString(c), 16);
}
catch (NumberFormatException e) {
    throw new IllegalArgumentException("Not a hex char");
}
int value;
try {
    value = Integer.parseInt(Character.toString(c), 16);
}
catch (NumberFormatException e) {
    throw new IllegalArgumentException("Not a hex char");
}
鲜肉鲜肉永远不皱 2024-08-02 22:30:50

不过我自己找到了。

int i = Character.digit('A',16);

Found it myself though.

int i = Character.digit('A',16);
诺曦 2024-08-02 22:30:50

(字节)Integer.parseInt("a", 16)

(byte)Integer.parseInt("a", 16)

胡大本事 2024-08-02 22:30:50

看一下 Commons Codec,特别是 Hex 类。

http://commons.apache.org/ codec/apidocs/org/apache/commons/codec/binary/Hex.html

您应该能够使用 toDigit() 方法将十六进制字符数组或字符串转换为 int 值:

protected static int toDigit(char ch, int index)

您需要捕获但解码器异常。

try {
    int i = Hex.toDigit('C');
} catch (DecoderException de) {
    log.debug("Decoder exception ", de);
}

还有一些方法可以将 char[] 或 String 转换为相应的字节数组。

Take a look at Commons Codec and in particular the Hex class.

http://commons.apache.org/codec/apidocs/org/apache/commons/codec/binary/Hex.html

You should be able to convert a hex char array or string to an int value using the toDigit() method:

protected static int toDigit(char ch, int index)

You'll need to catch DecoderException though.

try {
    int i = Hex.toDigit('C');
} catch (DecoderException de) {
    log.debug("Decoder exception ", de);
}

There's also methods there to convert a char[] or String to the corresponding byte array as well.

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