摘要:
/** * 判断字符串是否是数字 * @param s * @return */ public final static boolean isNumeric(String s) { if (s != null && !"".equals(s.trim())) return s.matches("^[ 阅读全文
posted @ 2020-12-07 11:02
superRabbit
阅读(94)
评论(0)
推荐(0)
2020年12月7日