/**
 * unicodeToGB
 * @param strIn
 * @return String
 */
public static String ISOToGB(String strIn) {
byte[] b;
String strOut = null;
if (strIn == null || (strIn.trim()).equals("")) { return strIn; }
try {
b = strIn.getBytes("ISO8859_1");
strOut = new String(b, "GBK");
} catch (UnsupportedEncodingException e) {
}
return strOut;
}