public static String toGBString( String asciiStr )
{
String s = "";
try {
rtnStr = new String( ascii.getBytes( ), "gb2312" );
} catch( Exception ex ) {}
return s;
}
I am not sure if this kind of routine require to be synchronized.
{
String s = "";
try {
rtnStr = new String( ascii.getBytes( ), "gb2312" );
} catch( Exception ex ) {}
return s;
}
I am not sure if this kind of routine require to be synchronized.
Comment