当前位置: 首页 > 工具软件 > Text::Unit > 使用案例 >

java.lang.IllegalArgumentException: Input byte array has wrong 4-byte ending unit

微生德运
2023-12-01
/**
     * 编码
     *
     * @param text
     * @return
     */
    public static byte[] decode(String text) {
        return Base64.getMimeDecoder().decode(text);
    }

改为如下试一下:
	
	public static byte[] decode(String text) {
	        return Base64.getDecoder().decode(text);
	}



 类似资料:

相关阅读

相关文章

相关问答