十八、发送xml数据给服务器

前端之家收集整理的这篇文章主要介绍了十八、发送xml数据给服务器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一、发送xml数据

  1. public static void main(String[] args) throws Exception {
  2. String xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><videos><video><title>中国</title></video></videos>";
  3. String path = http://localhost:8083/videoweb/video/manage.do?method=getXML ;
  4. byte[] entity = xml.getBytes("UTF-8");
  5. HttpURLConnection conn = (HttpURLConnection) new URL(path).openConnection();
  6. conn.setConnectTimeout(5000);
  7. conn.setRequestMethod("POST");
  8. conn.setDoOutput(true); //指定发送的内容类型为xml
  9. conn.setRequestProperty("Content-Type","text/xml; charset=UTF-8");
  10. conn.setRequestProperty("Content-Length",String.valueOf(entity.length));
  11. OutputStream outStream = conn.getOutputStream();
  12. outStream.write(entity);
  13. if(conn.getResponseCode() == 200){
  14. System.out.println("发送成功");
  15. }else{
  16. System.out.println("发送失败");
  17. }
  18. }

二、接受xml数据

  1. public ActionForward getXML(ActionMapping mapping,ActionForm form,HttpServletRequest request,HttpServletResponse response)
  2. throws Exception {
  3. InputStream inStream = request.getInputStream();
  4. byte[] data = StreamTool.read(inStream);
  5. String xml = new String(data,"UTF-8");
  6. System.out.println(xml);
  7. return mapping.findForward("result");
  8. }

猜你在找的XML相关文章