更改此:
StringEntity se = new StringEntity(json); se.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));httppost.setEntity(se);
仅此:
httppost.setEntity(new StringEntity(json.toString(), HTTP.UTF_8));
欢迎分享,转载请注明来源:内存溢出
更改此:
StringEntity se = new StringEntity(json); se.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));httppost.setEntity(se);
仅此:
httppost.setEntity(new StringEntity(json.toString(), HTTP.UTF_8));
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)