如何将字节数组转换为自定义基本字符串?

时间:2016-08-01 13:16:53

标签: java encode

我知道有一些方法可以转换为带有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

1 个答案:

答案 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();
}