Java HttpURLConnection .getResponseCode ()
Syntax
HttpURLConnection.getResponseCode() has the following syntax.
public int getResponseCode() throws IOException
Example
In the following code shows how to use HttpURLConnection.getResponseCode() method.
/* w w w . j a v a 2s . com*/
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Date;
public class Main{
public static void main(String args[]) throws Exception {
URL url = new URL("http://www.google.com");
HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
System.out.println("Response code is " + httpCon.getResponseCode());
}
}