我对Java 1.8和Play Framework完全陌生。
只是一个简单的问题:从我的应用程序中,我必须调用REST Web服务thoroug Play框架,然后解析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());
});

10-04 20:12