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

java 关于base64中文乱码问题解决 最少操作

程序员文章站 2022-04-17 10:50:51
...

前言

使用base64转码中文名称后解码时发现乱码

 截取字符串:{"userName":"冯���城","userId":"124"}

原因

字符串获取字节码默认是 ISO-8859-1

   static byte[] encode(String charsetName, char[] ca, int off, int len)
        throws UnsupportedEncodingException
    {
        StringEncoder se = deref(encoder);
        String csn = (charsetName == null) ? "ISO-8859-1" : charsetName;
        if ((se == null) || !(csn.equals(se.requestedCharsetName())
                              || csn.equals(se.charsetName()))) {
            se = null;
            try {
                Charset cs = lookupCharset(csn);
                if (cs != null)
                    se = new StringEncoder(cs, csn);
            } catch (IllegalCharsetNameException x) {}
            if (se == null)
                throw new UnsupportedEncodingException (csn);
            set(encoder, se);
        }
        return se.encode(ca, off, len);
    }

解决

传入字符串获得字节码时指定字符集 UTF-8
转码

    /**
     * BASE64编码
     *
     * @param str
     * @return
     * @throws Exception
     */
    public static String encryptBASE64(final String str) {
        try {
            if (str == null || "".equals(str)) {
                return "";
            }
            return new String(encryptBASE64(str.getBytes("UTF-8")));
        } catch (Exception ex) {
            ex.printStackTrace();
            return null;
        }
    }

解码

  /**
     * BASE64解码
     *
     * @param str
     * @return
     * @throws Exception
     */
    public static String decryptBASE64(final String str) {
        try {
            if (str == null || "".equals(str)) {
                return "";
            }
            return new String(decryptBASE64(str.getBytes("UTF-8")));
        } catch (Exception ex) {
            ex.printStackTrace();
            return null;
        }
    }

这样编译出来的东西再转码就没问题

String s = Base64Util.encryptBASE64(o.toString());
--eyJ1c2VyTmFtZSI6IuWGr+WKoOaIkCIsInVzZXJJZCI6IjEyNCJ9
{"userName":"冯加成","userId":"124"}
相关标签: 后端 base64