
love.cq.util.ObjectBean Maven / Gradle / Ivy
package love.cq.util;
public class ObjectBean {
public static int getInt(String str , int def){
try {
return Integer.parseInt(str) ;
} catch (NumberFormatException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return def ;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy