648540858
2023-06-21 7b24d51db9800d41fe73df4a97d02ed1429dae11
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;
        }
    }