All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.founder.core.utils.MyBase64Utils Maven / Gradle / Ivy

There is a newer version: 3.2.3.2
Show newest version
package com.founder.core.utils;

/**
 * @author dingzhiwei [email protected]
 * @version V1.0
 * @Description: base64编码解码工具类
 * @date 2017-07-05
 * @Copyright: www.xxpay.org
 */
public class MyBase64Utils {
    public final static String encode(byte[] src, int startIndex, int srclen) {
        if (src == null) return null;
        if (startIndex + srclen > src.length) srclen = src.length - startIndex;
        byte src2[] = new byte[srclen];
        System.arraycopy(src, startIndex, src2, 0, srclen);
        return encode(src2);
    }

    public final static String encode(byte[] src, int srclen) {
        if (src == null) return null;
        if (srclen > src.length) srclen = src.length;
        byte data[] = new byte[srclen + 2];
        System.arraycopy(src, 0, data, 0, srclen);
        byte dest[] = new byte[(data.length / 3) * 4];
        // 3-byte to 4-byte conversion
        for (int sidx = 0, didx = 0; sidx < srclen; sidx += 3, didx += 4) {
            dest[didx] = (byte) ((data[sidx] >>> 2) & 077);
            dest[didx + 1] = (byte) ((data[sidx + 1] >>> 4) & 017 | (data[sidx] << 4) & 077);
            dest[didx + 2] = (byte) ((data[sidx + 2] >>> 6) & 003 | (data[sidx + 1] << 2) & 077);
            dest[didx + 3] = (byte) (data[sidx + 2] & 077);
        }

        // 0-63 to ascii printable conversion
        for (int idx = 0; idx < dest.length; idx++) {
            if (dest[idx] < 26) dest[idx] = (byte) (dest[idx] + 'A');
            else if (dest[idx] < 52) dest[idx] = (byte) (dest[idx] + 'a' - 26);
            else if (dest[idx] < 62) dest[idx] = (byte) (dest[idx] + '0' - 52);
            else if (dest[idx] < 63) dest[idx] = (byte) '+';
            else dest[idx] = (byte) '/';
        }

        // add padding
        for (int idx = dest.length - 1; idx > (srclen * 4) / 3; idx--) {
            dest[idx] = (byte) '=';
        }
        return new String(dest);
    }

    public final static String encode(byte[] d) {
        return encode(d, d.length);
    }

    /**
     * 每64字符后,换行
     */
    public static String encode_64(byte[] bin) throws Exception {
        String b64 = MyBase64Utils.encode(bin);
        StringBuffer sb = new StringBuffer();
        for (int offset = 0; offset < b64.length(); offset += 64) {
            int idx_begin = offset;
            int idx_end = Math.min(offset + 64, b64.length());
            String s = b64.substring(idx_begin, idx_end);
            sb.append(s).append('\n');
            //if (withDebug) debug(idx_begin+"..."+idx_end);
        }
        b64 = sb.toString();
        return b64;
    }

    public final static byte[] decode(String str) {
        if (str == null) return new byte[0];
        str = str.trim();    //TODO 去掉结尾空格,但还不彻底,可考虑进一步改善。。。
        if (str.length() == 0) return new byte[0];
        return decode(str.getBytes());
    }

    private final static byte[] decode(byte[] data) {
        int tail = data.length;
        while (data[tail - 1] == '=') tail--;    //去掉结尾的等号
        byte dest[] = new byte[tail - data.length / 4];
        for (int i = 0; i < data.length; i++) {// ascii printable to 0-63 conversion
            data[i] = decode_pre_byte(data[i]);    //TODO ??是否有用?
        }
        // 4-byte to 3-byte conversion
        int sidx, didx;
        for (sidx = 0, didx = 0; didx < dest.length - 2; sidx += 4, didx += 3) {
            dest[didx] = (byte) (((data[sidx] << 2) & 255) | ((data[sidx + 1] >>> 4) & 3));
            dest[didx + 1] = (byte) (((data[sidx + 1] << 4) & 255) | ((data[sidx + 2] >>> 2) & 017));
            dest[didx + 2] = (byte) (((data[sidx + 2] << 6) & 255) | (data[sidx + 3] & 077));
        }
        if (didx < dest.length) {
            dest[didx] = (byte) (((data[sidx] << 2) & 255) | ((data[sidx + 1] >>> 4) & 3));
        }
        if (++didx < dest.length) {
            dest[didx] = (byte) (((data[sidx + 1] << 4) & 255) | ((data[sidx + 2] >>> 2) & 017));
        }
        return dest;
    }

    private final static byte decode_pre_byte(byte b0) {    //重构。。。
        byte b = 0;
        if (b0 >= '0' && b0 <= '9') b = (byte) (b0 - ('0' - 52));
        else if (b0 >= 'a' && b0 <= 'z') b = (byte) (b0 - ('a' - 26));
        else if (b0 >= 'A' && b0 <= 'Z') b = (byte) (b0 - 'A');
        else if (b0 == '=') b = 0;
        else if (b0 == '+') b = 62;
        else if (b0 == '/') b = 63;
        return b;
    }

    /**
     * A simple test.cache that encodes and decodes the first commandline argument.
     */
    public final static void main(String args[]) throws Exception {
        String s = "xxpay做最好的开源聚合支付系统";
        System.out.println(MyBase64Utils.encode(s.getBytes()));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy