将JSON响应作为Java中Rest调用的一部分

时间:2013-09-27 08:17:31

标签: java json rest

我正在尝试用Java进行休息服务调用。我是网络和休息服务的新手。我有休息服务,返回json作为响应。我有以下代码,但我认为它不完整,因为我不知道如何使用json处理输出。

public static void main(String[] args) {
        try { 

            URL url = new URL("http://xyz.com:7000/test/db-api/processor"); 
            HttpURLConnection connection = (HttpURLConnection) url.openConnection(); 
            connection.setDoOutput(true); 
            connection.setInstanceFollowRedirects(false); 
            connection.setRequestMethod("PUT"); 
            connection.setRequestProperty("Content-Type", "application/json"); 

            OutputStream os = connection.getOutputStream(); 
           //how do I get json object and print it as string
            os.flush(); 

            connection.getResponseCode(); 
            connection.disconnect(); 
        } catch(Exception e) { 
            throw new RuntimeException(e); 
        } 

    }

请帮忙。我是新来的休息服务和json。非常感谢。

4 个答案:

答案 0 :(得分:2)

由于这是PUT请求,您在这里遗漏了一些内容:

OutputStream os = conn.getOutputStream();
os.write(input.getBytes()); // The input you need to pass to the webservice
os.flush();
...
BufferedReader br = new BufferedReader(new InputStreamReader(
        (conn.getInputStream()))); // Getting the response from the webservice

String output;
System.out.println("Output from Server .... \n");
while ((output = br.readLine()) != null) {
    System.out.println(output); // Instead of this, you could append all your response to a StringBuffer and use `toString()` to get the entire JSON response as a String.
    // This string json response can be parsed using any json library. Eg. GSON from Google.
}

请查看this,以便更轻松地了解网络服务。

答案 1 :(得分:2)

您的代码大部分都是正确的,但OutputStream存在错误。 正如R.J所说,需要OutputStream请求正文传递给服务器。 如果您的休息服务不需要任何身体,您不需要使用此身体。

要阅读服务器响应,您需要使用InputStream(R.J也向您展示示例):

try (InputStream inputStream = connection.getInputStream();
     ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();) {
    byte[] buf = new byte[512];
    int read = -1;
    while ((read = inputStream.read(buf)) > 0) {
        byteArrayOutputStream.write(buf, 0, read);
    }
    System.out.println(new String(byteArrayOutputStream.toByteArray()));
}

如果您不想这样做,这种方式很好,取决于第三方库。因此,我建议您查看Jersey - 非常好的库,其中包含大量非常有用的功能。

    Client client = JerseyClientBuilder.newBuilder().build();
    Response response = client.target("http://host:port").
            path("test").path("db-api").path("processor").path("packages").
            request().accept(MediaType.APPLICATION_JSON_TYPE).buildGet().invoke();
    System.out.println(response.readEntity(String.class));

答案 2 :(得分:0)

由于您的Content-Type是application / json,您可以直接将响应转换为JSON对象,例如

JSONObject recvObj = new JSONObject(response);

答案 3 :(得分:-1)

JsonKey jsonkey = objectMapper.readValue(new URL("http://echo.jsontest.com/key/value/one/two"), JsonKey.class);
System.out.println("jsonkey.getOne() : "+jsonkey.getOne())