Android 和 JSP:http post 请求中的 xml
我应该在 http post 请求(在请求正文内)中发送一个格式如下的 xml 字符串:
<message>
<man>
<age>18</age>
<sex>m</sex>
</man>
<result>
<math>8</math>
<science>8</science>
</result>
</message>
POST 请求应该将 Content-Type 标头设置为“text/xml; charset=UTF-8”。 我该怎么做?我不明白 httppost 如何用于 jsp...heeelp! :)
I should send within an http post request (inside the request body) an xml string formatted like the following:
<message>
<man>
<age>18</age>
<sex>m</sex>
</man>
<result>
<math>8</math>
<science>8</science>
</result>
</message>
The POST requests should have a Content-Type header set to "text/xml; charset=UTF-8".
How can i do this? i din't get how httppost works for jsp...heeelp! :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案应该是这样的:
http://amitkgaur.blogspot.it/2009/12/post-xml-data-without-form-in-jsp-and.html
Answer to this should be this:
http://amitkgaur.blogspot.it/2009/12/post-xml-data-without-form-in-jsp-and.html