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

直接给URL整体中文字符编码

时间:2019-07-06 00:19:16      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:字符   delete   app   tostring   char   文字   exception   span   str   

    public static String encode(String url, String encode)
            throws UnsupportedEncodingException {
        StringBuilder sb = new StringBuilder();
        StringBuilder noAsciiPart = new StringBuilder();
        for (int i = 0; i < url.length(); i++) {
            char c = url.charAt(i);
            if (c > 255) {
                noAsciiPart.append(c);
            } else {
                if (noAsciiPart.length() != 0) {
                    sb.append(URLEncoder.encode(noAsciiPart.toString(), encode));
                    noAsciiPart.delete(0, noAsciiPart.length());
                }
                sb.append(c);
            }
        }
        return sb.toString();
    }

 

直接给URL整体中文字符编码

标签:字符   delete   app   tostring   char   文字   exception   span   str   

原文地址:https://www.cnblogs.com/nanahome/p/11141170.html

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