匹配一个或者多个中文字符
public static String getChinese(String url){
String regex = "([\u4e00-\u9fa5]+)";
Matcher matcher = Pattern.compile(regex).matcher(url);
String result = null;
if(matcher.find()){
result = matcher.group(1);
}
return result;
}