我是Java 1.8和Play Framework的新手。 只是一个简单的问题:从我的应用程序中,我必须调用REST Web服务,然后解析XML响应,以便找到一些感兴趣的元素。 正如我在指南中找到的那样,我的代码如下所示:
WSRequest request = ws.url("http://example.com").setQueryParameter("paramKey", "paramValue");
CompletionStage<Document> documentPromise = request.get()
.thenApply(WSResponse::asXml);
问题是:如何解析“documentPromise”结果以查找XML中的元素?
谢谢
您只需自己应用该方法,然后根据需要处理它,而不是使用WSResponse::asXml
。 例如,如果您只想返回元素的文本,则给定一个id:
// (...)
.thenApply(res -> {
Document doc = res.asXml();
Element e = doc.getElementById("someId");
return ok(e.getTextContent());
});