判断是否为数字
protected boolean isNumeric(String str) {
Pattern pattern = Pattern.compile("[0-9]*");
return pattern.matcher(str).matches();
}
posted on 2014-05-06 14:43 clarenceV1 阅读(121) 评论(0) 编辑 收藏 举报
protected boolean isNumeric(String str) {
Pattern pattern = Pattern.compile("[0-9]*");
return pattern.matcher(str).matches();
}
posted on 2014-05-06 14:43 clarenceV1 阅读(121) 评论(0) 编辑 收藏 举报