/**
* Big5字与Unicode的互换
* 转换后的正常字型
*/

import

public class
public static
try{
return new String(s.getBytes("ISO8859_1"), "Big5");
}
catch
return
}
}

public static
try{
return new String(s.getBytes("Big5"), "ISO8859_1");
}
catch
return
}
}

public static
"";
for (int i=0; i<s.length(); i++){
int ch=(int)s.charAt(i);
"0000"+Integer.toHexString(ch);
4)+" ";
}
return
}
}