/**
* 转码
*/
// String strGBK = null;
// try
// {
// strGBK = URLEncoder.encode(jsonResult, "UTF-8");
// }
// catch (UnsupportedEncodingException e1)
// {
// // TODO Auto-generated catch block
// e1.printStackTrace();
// }
// System.out.println(strGBK);
/**
* 解码
*/
// String strUTF8 = null;
// try
// {
// strUTF8 = URLDecoder.decode(jsonResult, "UTF-8");
// }
// catch (UnsupportedEncodingException e1)
// {
// // TODO Auto-generated catch block
// e1.printStackTrace();
// }
// System.out.println(strUTF8);