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

url中含有中文路径时访问出现404问题

时间:2018-02-02 18:32:16      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:getch   url   coder   ann   row   nes   compile   find   log   

/**
   * URL中文字符编码转换
   * @param url 含中文字符的URL
   * @return 
   */
  public static String getChineseURICode(String url){
      if(ValidateUtil.isEmpty(url)) throw new AppException("URL cannot be null");
      Matcher matcher = Pattern.compile("[\u4e00-\u9fa5]").matcher(url);
      String c = null;
      URLEncoder urlEncoder = new URLEncoder();
      while (matcher.find()) {
          c = matcher.group();
          url = url.replaceAll(c,urlEncoder.encode(c));
      }
      return url;
  }

 

url中含有中文路径时访问出现404问题

标签:getch   url   coder   ann   row   nes   compile   find   log   

原文地址:https://www.cnblogs.com/feiruo/p/8405968.html

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