Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static int isNull_Int(Object response) {
if (response == null || response.equals(null))
return -1;
else
return Integer.parseInt(response.toString().trim());
}
}