摘要: String regex="([\u4e00-\u9fa5]+)"; String str="132更新至456"; Matcher matcher = Pattern.compile(regex).matcher(str); if(matcher.find()){ System.out.println(matcher.group(0)); } 阅读全文
posted @ 2017-06-13 15:28 yaoh371 阅读(3207) 评论(0) 推荐(0) 编辑
摘要: package com.athena.ckx.util; import java.io.FileInputStream; import java.io.InputStream; import java.sql.Connection; import java.sql.Statement; import java.util.ArrayList; import java.util.Arrays; ... 阅读全文
posted @ 2017-06-13 15:26 yaoh371 阅读(2761) 评论(0) 推荐(0) 编辑