溫馨提示×

java怎么發(fā)送xml報文

小億
341
2023-12-05 15:54:36
欄目: 編程語言

在Java中發(fā)送XML報文可以使用以下步驟:

  1. 創(chuàng)建一個URL對象,指定要發(fā)送請求的目標(biāo)URL。
URL url = new URL("http://example.com");
  1. 打開URL連接。
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
  1. 設(shè)置連接的屬性,如請求方法、超時時間等。
connection.setRequestMethod("POST");
connection.setConnectTimeout(5000);
  1. 設(shè)置連接的輸入輸出流。
connection.setDoOutput(true); // 允許向服務(wù)器寫入數(shù)據(jù)
connection.setDoInput(true); // 允許從服務(wù)器讀取數(shù)據(jù)
  1. 設(shè)置請求頭,指定發(fā)送的內(nèi)容類型為XML。
connection.setRequestProperty("Content-Type", "application/xml;charset=UTF-8");
  1. 創(chuàng)建XML報文,并將其寫入連接的輸出流。
String xml = "<xml>...</xml>";
OutputStream outputStream = connection.getOutputStream();
outputStream.write(xml.getBytes("UTF-8"));
outputStream.close();
  1. 發(fā)送請求并獲取響應(yīng)。
int responseCode = connection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_OK) {
    InputStream inputStream = connection.getInputStream();
    // 處理響應(yīng)數(shù)據(jù)
    inputStream.close();
}
  1. 關(guān)閉連接。
connection.disconnect();

上述代碼示例了如何發(fā)送一個XML報文,并接收服務(wù)器的響應(yīng)。你可以根據(jù)實際情況修改其中的URL、XML內(nèi)容和請求頭等。

0