2

以下链接返回客户实体集中的条目数http://services.odata.org/Northwind/Northwind.svc/Customers/ $count

如何使用java获得这个数字?

 URL url = new URL("http://services.odata.org/Northwind/Northwind.svc/Customers/$count");
 HttpURLConnection conn = (HttpURLConnection) url.openConnection();
 conn.setRequestMethod("GET")

在此之后编写什么代码以将条目计数为整数?

4

1 回答 1

2

您需要从输入流中读取数据,HttpURLConnection例如

 BufferedReader in = new BufferedReader(new InputStreamReader(
                                    conn.getInputStream()));
        String count;
        while ((count = in.readLine()) != null) 
            //this will print the count in count variable
            System.out.println(count);
        in.close();
    }

注意:您必须在将请求写入HttpURLConnection. 这显然意味着您将请求数据写入连接的输出流并从连接的输入流中读取响应数据

于 2014-05-23T06:45:18.587 回答