阅读量:0
在Java中发送XML报文可以使用以下步骤:
- 创建一个URL对象,指定要发送请求的目标URL。
URL url = new URL("http://example.com");
- 打开URL连接。
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
- 设置连接的属性,如请求方法、超时时间等。
connection.setRequestMethod("POST"); connection.setConnectTimeout(5000);
- 设置连接的输入输出流。
connection.setDoOutput(true); // 允许向服务器写入数据 connection.setDoInput(true); // 允许从服务器读取数据
- 设置请求头,指定发送的内容类型为XML。
connection.setRequestProperty("Content-Type", "application/xml;charset=UTF-8");
- 创建XML报文,并将其写入连接的输出流。
String xml = "<xml>...</xml>"; OutputStream outputStream = connection.getOutputStream(); outputStream.write(xml.getBytes("UTF-8")); outputStream.close();
- 发送请求并获取响应。
int responseCode = connection.getResponseCode(); if (responseCode == HttpURLConnection.HTTP_OK) { InputStream inputStream = connection.getInputStream(); // 处理响应数据 inputStream.close(); }
- 关闭连接。
connection.disconnect();
上述代码示例了如何发送一个XML报文,并接收服务器的响应。你可以根据实际情况修改其中的URL、XML内容和请求头等。