java判斷字符串中是否包含中文?
創(chuàng)新互聯(lián)是一家專業(yè)提供碧江企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站設(shè)計制作、做網(wǎng)站、HTML5、小程序制作等業(yè)務(wù)。10年已為碧江眾多企業(yè)、政府機構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站制作公司優(yōu)惠進(jìn)行中。
方法1、針對每個字符判斷
public static boolean isChinese(String str) throws UnsupportedEncodingException { int len = str.length(); for(int i = 0;i < len;i ++) { String temp = URLEncoder.encode(str.charAt(i) + "", "utf-8"); if(temp.equals(str.charAt(i) + "")) continue; String[] codes = temp.split("%"); //判斷是中文還是字符(下面判斷不精確,部分字符沒有包括) for(String code:codes) { if(code.compareTo("40") > 0) return true; } } return false; }
優(yōu)缺點:
缺點:效率低【每次都需要循環(huán)檢測字符串中每個字符】(每次發(fā)送都需要檢測短信內(nèi)容,每條內(nèi)容有很多字符);
優(yōu)點:不僅能檢測出中文漢字還能檢測中中文標(biāo)點;
方法2、利用正則表達(dá)式
public static boolean isContainChinese(String str) { Pattern p = Pattern.compile("[\u4e00-\u9fa5]"); Matcher m = p.matcher(str); if (m.find()) { return true; } return false; }
優(yōu)缺點:
缺點:只能檢測出中文漢字不能檢測中文標(biāo)點;
優(yōu)點:利用正則效率高;
方法3、改造正則
/** * 字符串是否包含中文 * * @param str 待校驗字符串 * @return true 包含中文字符 false 不包含中文字符 * @throws EmptyException */ public static boolean isContainChinese(String str) throws EmptyException { if (StringUtils.isEmpty(str)) { throw new EmptyException("sms context is empty!"); } Pattern p = Pattern.compile("[\u4E00-\u9FA5|\\!|\\,|\\。|\\(|\\)|\\《|\\》|\\“|\\”|\\?|\\:|\\;|\\【|\\】]"); Matcher m = p.matcher(str); if (m.find()) { return true; } return false; }
優(yōu)缺點:
優(yōu)點:效率既高又能檢測出中文漢字和中文標(biāo)點;
缺點:目前尚未發(fā)現(xiàn)。
以上就是java判斷字符串中是否包含中文?的詳細(xì)內(nèi)容,更多請關(guān)注創(chuàng)新互聯(lián)其它相關(guān)文章!