Java调用Web service接口SOAP协议HTTP请求,解析返回的XML字符串:
1. 使用Java的HTTP库发送SOAP请求,并接收返回的响应。
可以使用Java的HttpURLConnection、Apache HttpClient等库。
2. 将返回的响应转换为字符串。
3. 解析XML字符串,可以使用Java的DOM解析器或者其他第三方库,如JDOM、DOM4J等。
4. 解析XML数据,提取需要的信息。
参考代码如下:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.URL;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import org.w3c.dom.Document;
import org.xml.sax.SAXException;
public class SOAPClient {
public static void main(String[] args) {
try {
// 创建SOAP请求的XML数据
String soapRequest = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:web=\"http://www.demo.com\">\n"
+ " <soapenv:Header/>\n"
+ " <soapenv:Body>\n"
+ " <web:YourMethodName>\n"
+ " <web:Parameter1Name>parameter1Value</web:Parameter1Name>\n"
+ " </web:YourMethodName>\n"
+ " </soapenv:Body>\n"
+ "</soapenv:Envelope>";
// 发送SOAP请求,并接收返回的响应
String endpoint = "http://localhost:8080/demo_webservice"; // Webservice的URL
HttpURLConnection connection = (HttpURLConnection) new URL(endpoint).openConnection();
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type", "text/xml;charset=UTF-8");
connection.setRequestProperty("SOAPAction", "http://www.demo.com/demoMethodName"); // SOAPAction必须指定
connection.setDoOutput(true);
OutputStreamWriter osw = new OutputStreamWriter(connection.getOutputStream());
osw.write(soapRequest);
osw.flush();
BufferedReader br = new BufferedReader(new InputStreamReader(connection.getInputStream()));
StringBuilder sb = new StringBuilder();
String line;
while ((line = br.readLine()) != null) {
sb.append(line);
}
br.close();
connection.disconnect();
String soapResponse = sb.toString();
// 解析XML字符串
DocumentBuilder documentBuilder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
Document document = documentBuilder.parse(soapResponse);
// 提取需要的信息
// . . .
} catch (IOException | ParserConfigurationException | SAXException e) {
e.printStackTrace();
}
}
}
通过上述示例代码,使用Java的HTTP库发送SOAP请求,并接收返回的响应,然后将返回的响应
转换为字符串。
接下来,可以使用Java的DOM解析器或其他第三方库解析XML字符串,提取需要的信息。
需要将示例代码中的http://localhost:8080/demo_webservice替换为实际的Web service的文章来源:https://www.toymoban.com/news/detail-805781.html
URL,并将SOAP请求的XML数据、SOAPAction、以及需要提取的信息进行相应的替换。文章来源地址https://www.toymoban.com/news/detail-805781.html
到了这里,关于Java调用WebService接口,SOAP协议HTTP请求返回XML对象的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!