我知道有一些方法可以转换为带有toString
的Base36或带有encodeToString
的Base64。但是,我想怎么做。例如,我正在使用
private static final String BASE = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_=!@#$%^&*()[]{}|;:,.<>/?`~ \\'\"+-";
我可以使用以下代码使用int。
private String convertBase(int num) {
String text = "";
int j = (int) Math.ceil(Math.log(num) / Math.log(BASE.length()));
for (int i = 0; i < j; i++) {
text += BASE.charAt(num % BASE.length());
num /= BASE.length();
}
return text;
}
但是,byte[]
的数值大于long
。
答案 0 :(得分:0)
好的,我自己找到了答案。我使用BigInteger
来解决它。
public String baseConvert(final BigInteger number, final String charset) {
BigInteger quotient;
BigInteger remainder;
final StringBuilder result = new StringBuilder();
final BigInteger base = BigInteger.valueOf(charset.length());
do {
remainder = number.remainder(base);
quotient = number.divide(base);
result.append(charset.charAt(remainder.intValue()));
number = number.divide(base);
} while (!BigInteger.ZERO.equals(quotient));
return result.reverse().toString();
}