就是啊,怎么转换啊通过这个东西不行:
protected String trans(String chi)
{
String result = chi;
try{

result = new String(chi.getBytes("8859-1"),"gb2312"); 
}catch(UnsupportedEncodingException e){
System.out.println (e.toString());
}
return result;
}