public static String GB2unicode(String strIn){
String strOut=null;
if (strIn==null||((strIn.trim()).equals(""))) return strIn;
try {
byte b[]=strIn.getBytes("ISO8859_1");
strOut=new String(b,"GBK");}
catch(Exception e){}
return strOut;
}经过转换后,不管strIn是大写还是小写,strOut都为小写?谢谢!