0

我是 webservice 的新手,我正处于学习阶段。很少有在线内容提供有关使用 MovieDB API 网络服务的信息。好吧,我只是专注于尝试在屏幕上获取电影信息。

因此,根据我请求信息的API ,当我在浏览器中粘贴http://api.themoviedb.org/3/movie/550?api_key=MYKEY时,我得到了 JSON 响应。

我想使用 JAVA、SOAP 编写一个 Web 服务来解析 JSON 并获取所需的信息。我尝试使用 HttpURLConnection 然后使用 BufferedReader 但它不起作用。

请给我一些更好的选择。任何链接/博客都会有所帮助。

这是代码片段。

public class TestJSON {

/**
 * @param args
 */
public static void main(String[] args) {
    try{
        URL url = new URL("http://api.themoviedb.org/3/movie/550?api_key=MYKEY/3/movie/550");
        HttpURLConnection con = (HttpURLConnection) url.openConnection();
        con.setDoOutput(true);
        con.setRequestMethod("GET");
        con.setRequestProperty("Content-Type", "application/json");

        String input = "";

        OutputStream os = con.getOutputStream();
        os.write(input.getBytes());
        os.flush();

        if (con.getResponseCode() != HttpURLConnection.HTTP_CREATED) {
            throw new RuntimeException("Failed : HTTP error code : "
                + con.getResponseCode());
        }

        BufferedReader br = new BufferedReader(new InputStreamReader((con.getInputStream())));

        String output;
        System.out.println("Output from Server .... \n");
        while ((output = br.readLine()) != null) {
            System.out.println(output);
        }

        con.disconnect();


    }
    catch(MalformedURLException m){
        System.out.println("Malformed URL");
    }
    catch(IOException ioe){
        System.out.println("IO exception");
    }


}

}

提前致谢。

津戈

4

1 回答 1

0

尝试使用此代码从 url 读取输出:

BufferedReader in = new BufferedReader(
                          new InputStreamReader(conn.getInputStream()));
String inputLine;
StringBuffer html = new StringBuffer();

while ((inputLine = in.readLine()) != null) {
    html.append(inputLine);
}
in.close();
于 2013-07-12T18:11:29.483 回答