mysql lation 转码

publicstaticStringtoGBK(Stringstrvalue){

try{

if(strvalue==null){

return"";

}else{

strvalue=newString(strvalue.getBytes("ISO-8859-1"),"GBK").trim();

returnstrvalue;

}

}catch(Exceptione){

return"";

}

}

publicstaticStringtolatin(Stringstrvalue){

try{

if(strvalue==null){

return"";

}else{

strvalue=newString(strvalue.getBytes("GBK"),"ISO-8859-1").trim();

returnstrvalue;

}

}catch(Exceptione){

return"";

}

}

相关推荐