0

我正在尝试将用户的输入作为字符串接收,将此字符串分成两半并将这些字符串转换为十六进制整数。我需要在 TEA 加密算法中使用这些十六进制整数。我正在为 gui 构建器在 netbeans 中制作这段代码。

我当前的代码

//Getting initial text
String arg = input.getText();

//establishing Left and Right for TEA
int[] v = new int[2];

// Splitting the string into two.
StringBuilder output2;
for (int x = 0; x < 2; x++ ) {
    output2 = new StringBuilder();
    for (int i = 0; i < arg.length()/2; i++) {
        if (x == 1) 
            output2.append(String.valueOf(arg.charAt(arg.length()/2 + i)));
        else 
            output2.append(String.valueOf(arg.charAt(i)));  
    }
    //converting a half into a string
    String test = output2.toString();
    //printing the string out for accuracy
    System.out.println(test);
    //converting the string to string hex
    test = toHex(test);
    //converting the string hex to int hex.
    v[x] = Integer.parseInt(test, 16);
}


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

我收到此错误:

java.lang.NumberFormatException:对于输入字符串:“6a54657874”

我已经在网上查看了这个问题,但错误说当我将字符串转换为 v[x] 时发生,多个站点说这是将十六进制字符串放入 int 的正确方法,所以我很困惑。请帮忙。

4

2 回答 2

2

6a54657874因为十六进制是456682469492十进制。这大于Integer.MAX_VALUE. 它将适合long.

制作并v使用long[]Long.parseLong(test, 16);

于 2013-04-20T20:17:38.747 回答
1

32 位对于您的数字来说太小了。您需要Long.parseLong改用。

于 2013-04-20T20:21:31.760 回答