您的位置:

java判断字符串是否是纯数字,java判断字符串是否是纯数字

本文目录一览:

Java中判断字符串是否为数字的几种方法

1.使用Character.isDigit(char)判断

char num[] = str.toCharArray();//把字符串转换为字符数组

StringBuffer title = new StringBuffer();//使用StringBuffer类,把非数字放到title中

StringBuffer hire = new StringBuffer();//把数字放到hire中

for (int i = 0; i num.length; i++) {

// 判断输入的数字是否为数字还是字符

if (Character.isDigit(num[i])) {把字符串转换为字符,再调用Character.isDigit(char)方法判断是否是数字,是返回True,否则False

hire.append(num[i]);// 如果输入的是数字,把它赋给hire} else {title.append(num[i]);// 如果输入的是字符,把它赋给title}}}

2.使用类型转换判断try {String str="123abc";

int num=Integer.valueOf(str);//把字符串强制转换为数字

return true;//如果是数字,返回True

} catch (Exception e) {

return false;//如果抛出异常,返回False}

3.使用正则表达式判断

String str = "";

boolean isNum = str.matches("[0-9]+");

//+表示1个或多个(如"3"或"225"),*表示0个或多个([0-9]*)(如""或"1"或"22"),?表示0个或1个([0-9]?)(如""或"7")

ps:这个方法只能用于判断是否是正整数

java中判断字符串是否为纯数字

方法一:利用正则表达式 public class Testone { public static void main(String[] args){ String str="123456"; boolean result=str.matches("[0-9]+"); if (result == true) { System.out.println("该字符串是纯数字");}else{System.out.println("该字符串不是纯数字");}}}方法二:利用Pattern. import java.util.regex.Matcher; import java.util.regex.Pattern; public class Testone { public static void main(String[] args){ String str="123456"; Pattern pattern = Pattern.compile("[0-9]{1,}"); Matcher matcher = pattern.matcher((CharSequence)str); boolean result=matcher.matches(); System.out.println("该字符串是纯数字");}else{System.out.println("该字符串不是纯数字");}}}

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

public class AllNumber {

    /**

     * 使用Double.parseDouble方法判断字符串是不是为数字

     * 

     * @param number

     *            字符串

     * @return

     */

    public static boolean isNumber(String number) {

        if (null == number) {

            return false;

        }

        try {

            double num = Double.parseDouble(number);// 转换成功则是数字

        } catch (Exception e) {

            // TODO: handle exception

            return false;

        }

        return true;

    }

    /**

     * 使用正则表达式判断字符串是不是为数字

     * 

     * @param number

     *            字符串

     * @return

     */

    public static boolean isNumberByRegex(String number) {

        if (null == number) {

            return false;

        }

        String regex = "^[-]{0,1}[0-9]{1,}[.]{0,1}[0-9]{1,}$";

        return number.matches(regex);

    }

    public static void main(String[] args) {

        System.out.println(isNumber("1234.90"));

        System.out.println(isNumberByRegex("-0123.9"));

    }

}

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

Java中判断字符串是否全是数字:

可以使用正则表达式:

public boolean isNumeric(String str) {  

        Pattern pattern = Pattern.compile("[0-9]*");  

        Matcher isNum = pattern.matcher(str);  

        if (!isNum.matches()) {  

            return false;  

        }  

        return true;  

    }

但是这个方法并不安全,没有对字符串进行空校验。 

在程序执行的时候很容易抛出异常。 

例如执行:

public static void main(String[] args) {  

      

        String str = null;  

        System.out.println(BarcodeChecksum.INSTANCE.isNumeric(str));  

  

    }

就会抛出异常:

Exception in thread "main" java.lang.NullPointerException  

    at java.util.regex.Matcher.getTextLength(Matcher.java:1140)  

    at java.util.regex.Matcher.reset(Matcher.java:291)  

    at java.util.regex.Matcher.init(Matcher.java:211)  

    at java.util.regex.Pattern.matcher(Pattern.java:888)  

    at com.ossez.bcu.util.BarcodeChecksum.isNumeric(BarcodeChecksum.java:37)  

    at com.ossez.bcu.util.BarcodeChecksum.main(BarcodeChecksum.java:53)

所以这个方法并不准确。 

如果执行:

public static void main(String[] args) {  

        String str = "";  

        System.out.println(BarcodeChecksum.INSTANCE.isNumeric(str));  

    }

将会返回 true。 

这说明这个方法没有对空字符串进行校验。 

可以使用 Apache 的 StringUtils.isNumeric() 函数进行判断。 

这个函数位于 org.apache.commons.lang.StringUtils;  中。 

但是,需要注意,如果传入参数为 "" 同样也会你存在判断不准确的情况,这时候需要首先对需要进行判断的参数进行非空校验,然后删除传入数据中的空格。

public static void main(String[] args) {  

        String str = "";  

        System.out.println(StringUtils.isNumeric(str));  

    }

上面这个函数将会返回 true。 

请先 trim 数据