ava中判断字符串是否为数字的方法:

1.用JAVA自带的函数
public static boolean isNumeric(String str){
for (int i = 0; i < str.length(); i++){
System.out.println(str.charAt(i));
if (!Character.isDigit(str.charAt(i))){
return false;
}
}
return true;
} 2.用正则表达式
首先要import java.util.regex.Pattern 和 java.util.regex.Matcher
public boolean isNumeric(String str){
Pattern pattern = Pattern.compile("[0-9]*");
Matcher isNum = pattern.matcher(str);
if( !isNum.matches() ){
return false;
}
return true;
} 3.使用org.apache.commons.lang
org.apache.commons.lang.StringUtils;
boolean isNunicodeDigits=StringUtils.isNumeric("aaa123456789");
http://jakarta.apache.org/commons/lang/api-release/index.html下面的解释:
isNumeric
public static boolean isNumeric(String str)Checks if the String contains only unicode digits. A decimal point is not a unicode digit and returns false.
null will return false. An empty String ("") will return true.
StringUtils.isNumeric(null) = false
StringUtils.isNumeric("") = true
StringUtils.isNumeric(" ") = false
StringUtils.isNumeric("123") = true
StringUtils.isNumeric("12 3") = false
StringUtils.isNumeric("ab2c") = false
StringUtils.isNumeric("12-3") = false
StringUtils.isNumeric("12.3") = false Parameters:
str - the String to check, may be null
Returns:
true if only contains digits, and is non-null 上面三种方式中,第二种方式比较灵活。 第一、三种方式只能校验不含负号“-”的数字,即输入一个负数-199,输出结果将是false; 而第二方式则可以通过修改正则表达式实现校验负数,将正则表达式修改为“^-?[0-9]+”即可,修改为“-?[0-9]+.?[0-9]+”即可匹配所有数字。

最新文章

  1. javascript中函数的3个高级技巧
  2. SQL Server 数据库查找重复记录的几种方法
  3. Hadoop编程1:天气数据AWK &amp; MapReduce
  4. java初学知识点
  5. 单片机C语言开发学习笔记---动态的数码管
  6. HDU-4690 EBCDIC 映射,模拟,沙茶
  7. Fast portable non-blocking network programming with Libevent--转
  8. Android更改桌面应用程序launcher的两种方式
  9. 两个Select 之间的值的传递
  10. js_day13
  11. 通过 Sqoop1.4.7 将 Mysql5.7、Hive2.3.4、Hbase1.4.9 之间的数据导入导出
  12. Electron桌面应用打包流程
  13. Java集合源码学习(二)ArrayList
  14. javascript中forEach()和jquery中each()的区别
  15. .NET 日期数据的格式化方法
  16. 并发编程之 CAS 的原理
  17. 利用jstack 找到异常代码
  18. Codeforces788A Functions again 2017-04-12 18:22 56人阅读 评论(0) 收藏
  19. websocket服务器+客户端
  20. Q394 字符串解码

热门文章

  1. JavaEE 7技术一览
  2. hadoop运行原理之shuffle
  3. Winform TreeList递归绑定树节点
  4. Get IP Address in Android 4.0+
  5. Django url()函数详解
  6. php大力力 [044节] PHP的POST语句一定要大写!!if(!empty($_POST[&#39;id&#39;])) {
  7. 1、datatable与datagrid之间的绑定
  8. 12-2 mysql 查询
  9. Zookeeper源码编译为Eclipse工程(转)
  10. 在 Mac OS X Yosemite 10.10.5 上配置 OpenGL 编程环境