场景:
使用HttpURLConnection向服务器提交POST请求,模拟将评论的内容提交给服务器
url = new URL("http://10.0.2.2:9102/post/comment");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("POST");
...
CommentItem commentItem = new CommentItem("123", "评论内容");
//将评论对象转换为json格式
Gson gson = new Gson();
String json = gson.toJson(commentItem);
//设置实体体长度
connection.setRequestProperty("Content-Length",String.valueOf(json.length()));
问题描述
原因分析:
HTTP请求报文中Content - Length指示了被发送对象的字节数,而本程序传入的长度则是对象json格式的字符串的长度
解决方案:
先得到对象json格式转化的byte数组,再设置Content - Length的长度
Gson gson = new Gson();
String json = gson.toJson(commentItem);//commentItem为评论的实体类
byte[] bytes = json.getBytes("UTF-8");
connection.setRequestProperty("Content-Length",String.valueOf(bytes.length));
最后得到了post的结果:
{“success”:true,“code”:10000,“message”:“评论成功:评论内容”,“data”:null}