次のリンクは、Customers エンティティ セットのエントリ数を返します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")
エントリの数を整数として取得するには、この後に何をコーディングすればよいでしょうか?