Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
private static String removeNullStr(String value) {
try {
if (value != null && value.trim().equalsIgnoreCase("null")) {
return "";
} else {
return value;
}
} catch (Exception e) {
return "";
}
}
}