以下链接返回客户实体集中的条目数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")
在此之后编写什么代码以将条目计数为整数?