Java对URL中的中文进行编码工具类

public static String encode(String url,String chartSet)
    {
        try {
            Matcher matcher = Pattern.compile("[^\\x00-\\xff]").matcher(url);//双字节,包括中文和中文符号[^\x00-\xff]  中文[\u4e00-\u9fa5]
            while (matcher.find()) {
                String tmp=matcher.group();
                url=url.replaceAll(tmp,java.net.URLEncoder.encode(tmp,chartSet));
            }
        } catch (UnsupportedEncodingException e) {
            logger.error("双字节编码异常:", e);
        }
        return url;
    }

 

你可能感兴趣的:(java)