欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

String length must be a multiple of four.

程序员文章站 2022-07-10 15:31:13
...
import org.apache.commons.codec.binary.Base64;

public class Base64Tool {

    /**
     * 字节数组转Base64编码
     */
    public static String byteToBase64(byte[] bytes) {
        return new String(Base64.encodeBase64(bytes));
//        return Base64.byteArrayToBase64(bytes);
    }

import org.apache.commons.codec.binary.Base64;

import com.alibaba.druid.util.Base64;   报错String length must be a multiple of four.

相关标签: Java