648540858
2022-02-24 a42dda2bd3cc1cf8c20cc61e7ad9211eadecbaf3
src/main/java/com/genersoft/iot/vmp/gb28181/utils/NumericUtil.java
@@ -20,10 +20,10 @@
    public static boolean isDouble(String str) {
        try { 
            Double num2 = Double.valueOf(str);
            logger.debug(num2 + " is a valid numeric string!");
//            logger.debug(num2 + " is a valid numeric string!");
            return true;
        } catch (Exception e) { 
            logger.debug(str + " is an invalid numeric string!");
//            logger.debug(str + " is an invalid numeric string!");
            return false;
        }
    }
@@ -36,10 +36,10 @@
    public static boolean isInteger(String str) {
        try { 
            int num2 = Integer.valueOf(str); 
            logger.debug(num2 + " is an integer!");
//            logger.debug(num2 + " is an integer!");
            return true;
        } catch (Exception e) { 
            logger.debug(str + " is not an integer!");
//            logger.debug(str + " is not an integer!");
            return false;
        }
    }