Java tutorial
//package com.java2s; //License from project: Apache License public class Main { public static int canParseInt(String number) { int result = Integer.MIN_VALUE; try { result = Integer.parseInt(number); } catch (NumberFormatException e) { e.printStackTrace(); } return result; } }