java code to get JSON from URL and get the data code example
Example: how to read a .json from web api java
try {
URL url = new URL("url");
HttpURLConnection conn = (HttpURLConnection)url.openConnection();
conn.setRequestMethod("GET");
conn.connect();
if(conn.getResponseCode() == 200) {
Scanner scan = new Scanner(url.openStream());
while(scan.hasNext()) {
String temp = scan.nextLine();
//parse json here
}
}
}