几种方式
1、
String s = "sds";
s = new String(data_id.getBytes("UTF-8"));
2、 使用get请求
String s = "sdf";
s = URLEncoder.encode(s, "utf-8");
3、如果使用的是httpclient,且是post请求,则使用
StringEntity se = new StringEntity(js,"utf-8"); httpPost.setEntity(se);
js是json数据