HTTP GET Request Using JAVA
HTTP/HTTPS Get/Post request /response using JAVA below.
For detailed visit here:
https://www.mkyong.com/java/how-to-send-http-request-getpost-in-java/
Code:
For detailed visit here:
https://www.mkyong.com/java/how-to-send-http-request-getpost-in-java/
Code:
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.URL; import javax.net.ssl.HttpsURLConnection; public class HttpURLConnection { public static void main(String[] args) throws IOException { String response = httpGet("https://services.groupkt.com/state/get/IND/all"); } public static String httpGet(String urlStr) throws IOException { URL obj = new URL(urlStr); HttpsURLConnection con = (HttpsURLConnection) obj.openConnection(); System.out.println(con.getResponseCode()); if (con.getResponseCode() != 200) { throw new IOException(con.getResponseMessage()); } // buffer the result into string BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream())); String inputLine; StringBuffer response = new StringBuffer(); while ((inputLine = in.readLine()) != null) { response.append(inputLine); } in.close(); con.disconnect(); return response.toString(); } }
Comments
Post a Comment