gpt4 book ai didi

java - 将十六进制转换为具有 3 位数字的 char

转载 作者:行者123 更新时间:2023-12-01 05:15:13 25 4
gpt4 key购买 nike

当十六进制有 3 位数字时,我在将十六进制转换为字符时遇到问题

我有两种方法可以转义和取消转义超过十进制值 127 的字符

test\\b8test¸ 被转义时生成

unescape 执行以下操作:

for (int i=0, n=node.length; i<n; i++) {
if(c == "\\"){
char c2 = node[i + 1];
char c3 = node[i + 2];
int i= Integer.parseInt(str,16);
char c = (char)i;
System.out.println("Char is:=" + c);
}
}

输出 - 测试¸

如您所见,我将斜线后的前两个字符转换为字符。这一切都很好。但是,有时有些字符具有 3 个十六进制数字(例如 test\\2d8。这应该转义为 test˘)。当这进入我的 unescape 方法时,不会使用全部 3 个字符。只有前 2 个才会产生错误的结果。

有没有办法确定何时转换 2 个或 3 个字符

最佳答案

这就是我要做的:

String raw = new String(node); // might be a better way to get a string from the chars
int slashPos = raw.indexOf('\\');
if(slashPos >= 0) {
String hex = raw.substring(slashPos + 1);
int value = Integer.parseInt(hex,16);
}

通过这种方式,我们不会对 2、3、4 或 100 位数字进行特殊的大小写(尽管我确信 100 位数字会引发异常:-))。相反,我们使用协议(protocol)作为字符串中的“里程碑”,然后接受斜杠后面的所有内容都是十六进制字符串。

class HexParse {

private static class HexResult {
final boolean exists;
final int value;
HexResult(boolean e, int v) { exists = e; value = v; }
}

private final String raw;
private final HexResult result;

public HexParse(String raw) {
this.raw = raw;
int slashPos = raw.indexOf('\\');
boolean noSlash = slashPos < 0;
boolean noTextAfterSlash = slashPos > raw.length() - 2;
if(noSlash || noTextAfterSlash) {
result = new HexResult(false,0);
} else {
// throws exception if second part of string contains non-hex chars
result = new HexResult(true,Integer.parseInt(raw.substring(slashPos + 1),16));
}
}

public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(raw).append(" ");
if(result.exists) {
sb.append("has hex of decimal value ").append(result.value);
} else {
sb.append("has no hex");
}
return sb.toString();
}

public static void main(String...args) {
System.out.println(new HexParse("test`hello")); // none
System.out.println(new HexParse("haha\\abcdef")); // hex
System.out.println(new HexParse("good\\f00d")); // hex
System.out.println(new HexParse("\\84b")); // hex
System.out.println(new HexParse("\\")); // none
System.out.println(new HexParse("abcd\\efgh")); //exception
}

}

c:\files\j>javac HexParse.java

c:\files\j>java HexParse
test`hello has no hex
haha\abcdef has hex of decimal value 11259375
good\f00d has hex of decimal value 61453
\84b has hex of decimal value 2123
\ has no hex
Exception in thread "main" java.lang.NumberFormatException: For input string: "e
fgh"
at java.lang.NumberFormatException.forInputString(NumberFormatException.
java:48)
at java.lang.Integer.parseInt(Integer.java:458)
at HexParse.<init>(HexParse.java:21)
at HexParse.main(HexParse.java:

关于java - 将十六进制转换为具有 3 位数字的 char,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11346412/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com