- String s = "1s1";
- try {
- //该条件用于判断字符串是否为数字组成的串还是能够转成数字
- if(s.startsWith("0")){
- System.out.println(String.format("%s不是数字", s));
- return;
- // throw new Exception();
- }
- Integer.parseInt(s);
- System.out.println(String.format("%s是数字", s));
- }catch(Exception e){
- System.out.println(String.format("%s不是数字", s));
- }finally{
- System.out.println("判断完毕");
- }
复制代码 |