码迷,mamicode.com
首页 > Web开发 > 详细

url上的中文字符是ISO-8859-1。后台获取中文乱码解决问题。

时间:2020-06-02 18:50:56      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:support   文字   stat   转换   bytes   中文乱码   解决   return   cep   

url上的中文字符是ISO-8859-1。后台获取中文乱码解决问题。

需要转码

public static String changeCharset(String str, String defaultValue)
    {
        if (str != null)
        {
            
            try
            {
                if ((StringUtils.isNotBlank(str)) && str.equals(
                        new String(str.getBytes("ISO-8859-1"), "ISO-8859-1")))
                {
                    return new String(str.getBytes("ISO-8859-1"), "UTF-8");
                }
                return str;
            }
            catch (UnsupportedEncodingException e)
            {
                throw new RuntimeException("字符串转换异常!!!!");
                
            }
        }
        return defaultValue;
    }

 

url上的中文字符是ISO-8859-1。后台获取中文乱码解决问题。

标签:support   文字   stat   转换   bytes   中文乱码   解决   return   cep   

原文地址:https://www.cnblogs.com/ykpkris/p/13032662.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!