Java tutorial
//package com.java2s; //License from project: Apache License public class Main { public static int getInt(String str, int def) { try { if (str == null) { return def; } return Integer.parseInt(str); } catch (NumberFormatException e) { e.printStackTrace(); } return def; } }