向Internet發送xml資料

來源:互聯網
上載者:User
Code:
  1.  利用HttpURLConnection對象,我們可以向網路發送xml資料.  
  2. StringBuilder xml =  new StringBuilder();  
  3. xml.append("<?xml version=/"1.0/" encoding=/"utf-8/" ?>");  
  4. xml.append("<M1 V=10000>");  
  5. xml.append("<U I=1 D=/"N73/">中國</U>");  
  6. xml.append("</M1>");  
  7. byte[] xmlbyte = xml.toString().getBytes("UTF-8");  
  8. URL url = new URL("http://localhost:8080/itcast/contanctmanage.do?method=readxml");  
  9. HttpURLConnection conn = (HttpURLConnection) url.openConnection();  
  10. conn.setConnectTimeout(6* 1000);  
  11. conn.setDoOutput(true);//允許輸出  
  12. conn.setUseCaches(false);//不使用Cache  
  13. conn.setRequestMethod("POST");          
  14. conn.setRequestProperty("Connection", "Keep-Alive");//維持長串連  
  15. conn.setRequestProperty("Charset", "UTF-8");  
  16. conn.setRequestProperty("Content-Length", String.valueOf(xmlbyte.length));  
  17. conn.setRequestProperty("Content-Type", "text/xml; charset=UTF-8");  
  18. DataOutputStream outStream = new DataOutputStream(conn.getOutputStream());  
  19. outStream.write(xmlbyte);//發送xml資料  
  20. outStream.flush();  
  21. if (conn.getResponseCode() != 200) throw new RuntimeException("請求url失敗");  
  22. InputStream is = conn.getInputStream();//擷取返回資料  
  23. String result = readAsString(is, "UTF-8");  
  24. outStream.close();  

216;mso-char-wrap:1;mso-kinsoku-overflow:1'>111%;visibility:hidden">left:44.35%;text-align:left;font-family:Wingdings;font-size:70%">l

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.