reading JSON response as string using jersey client

前端 未结 4 916
有刺的猬
有刺的猬 2021-02-20 07:20

I am using jersey client to post a file to a REST URI that returns response as json. My requirement is to read the response as is(json) to a string.

Here is the piece of

4条回答
  •  我寻月下人不归
    2021-02-20 07:51

    Although the above answer is correct, using Jersey API v2.7 it is slightly different with Response:

    Client client = ClientBuilder.newClient();
    WebTarget target = client.target("http://localhost:8080");
    Response response = target.path("api").path("server").path("ping").request(MediaType.TEXT_PLAIN_TYPE).get();
    System.out.println("Response: " + response.getStatus() + " - " + response.readEntity(String.class));
    

提交回复
热议问题