java中怎么判断数字

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中怎么判断数字相关的知识,希望对你有一定的参考价值。

java中判断一个字符是否为数字,可以通过Integer类的方法来判断,如果抛出异常,则不是数字,如下例子:

可以用异常来做校验
/**
  * 判断字符串是否是整数
  */
 public static boolean isInteger(String value) 
  try 
   Integer.parseInt(value);//判断是否为数字
   return true;
   catch (NumberFormatException e) //抛出异常
   return false;
  
 
参考技术A 前两位数字是不可能变的,2小时不可能行驶上千里,因此最后两位也不能变,唯一能变的就是中间的数字8,只能是9;如果是0,就发生了进位,那么第二位数字必加1,所以只能是9 参考技术B 首先java是强类型语言,在判断前你肯定知道要判断的是什么类型,如果是基本类型的话那么你就已经知道是不是数字了,如果是类则用boolean b = object instenceof Integer;如果是ture这是数字。 参考技术C 用Long.parseLong(),Double.parseDouble()方法转换,如果两个方法都没有抛出异常那说明是数据 参考技术D 说具体一点啊。

Java中怎样判断一个字符串是不是是数字

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]+”即可匹配所有数字。
参考技术A 用java的异常机制,不仅可以判断是否是数字,还可以判断整数或者小数:

public void checkInt(String bh)
try
int num = Integer.parseInt(bh);//将输入的内容转换成int
System.out.println("是整数:"+num);//是整数
catch (NumberFormatException e) //转换成int类型时失败
try
double d =Double.parseDouble(bh);//转成double类型
System.out.println("是小数:"+d);//是小数
catch (NumberFormatException e2) //转成double类型失败
System.out.println("不是数字");


以上是关于java中怎么判断数字的主要内容,如果未能解决你的问题,请参考以下文章

java怎么判断一个字符串是不是是数字

java中判断字符是不是是数字的几种方法

JAVA中 判断输入的东西是不是是数字怎么弄啊?急求啊

怎么判断一个字符是否数字字符?

在java里怎么判断输入的东西是否数字和正整数?(请把详细的代码给我谢谢)

java 检查是否数字