Answers for "java code to get JSON from URL and get the data"

1

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
                }
            }
}
Posted by: Guest on August-31-2020

Code answers related to "java code to get JSON from URL and get the data"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language