摘要: // 判断一个字符串是否都为数字 public boolean isDigit(String strNum) { return strNum.matches("[0-9]{1,}"); } // 判断一个字符串是否都为数字 public boolean isDigit(String strNum) 阅读全文
posted @ 2020-11-23 14:04 微风微风 阅读(11939) 评论(1) 推荐(1) 编辑