//1,反转字符数组 //2,大数操作 import java.math.BigInteger; import java.util.*; public class hexadecimalToInt { public static BigInteger bigIntegerPow(int i){ if(i==0){ return BigInteger.ONE; } BigInteger value=BigInteger.valueOf(16); for(int j=0;j<i-1;j++){ ...