pers.vic.sona.util.CommonUtil Maven / Gradle / Ivy
package pers.vic.sona.util;
/**
* 描述: test
* @author Vic.xu
* @date 2021-12-22 14:23
*/
public class CommonUtil {
/**
* string parse Int
* @param str str
* @return
*/
public static int parseInt(String str){
try{
return Integer.parseInt(str);
}catch(NumberFormatException ex) {
return 0;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy