如何从CompletionStage转换结果

时间:2019-10-24 01:54:21

标签: java playframework-2.6 completion-stage

我访问一个API,它成功返回结果,但是我想将结果转换为integer类型,当我尝试时,它向我显示错误

  

无法从completionStage转换为整数

我的代码

WSRequest req1 = ws.url("https://localhost/v1.0/mobile/user/profile")
            .addHeader("Authorization", token);
    CompletionStage<? extends WSResponse> rsp1 = req1.get();
    int a;

    return a = rsp1.thenApply(rs->ok(rs.asJson().findPath("user").findPath("id")));

0 个答案:

没有答案