我想将 JSON 对象作为请求传递给下面提到的 Web 服务。
Result:{
"email":"xxxxxxx",
"password":"xxxxxx",
"Marks":[
{
"mark1":"50",
"mark2":"70"
}
],
"firstname":"xxxx",
"lastname":"xxxxx"
}
我的代码:...
HttpPost httppost = new HttpPost("My Url");
httppost.setEntity(new StringEntity(**message**.toString(), "UTF-8"));
这里的消息应该有上述格式的 json 对象。我怎样才能格式化 JSON 对象?
谢谢。