Java HttpURLConnection HTTP_NOT_FOUND
Syntax
HttpURLConnection.HTTP_NOT_FOUND has the following syntax.
public static final int HTTP_NOT_FOUND
Example
In the following code shows how to use HttpURLConnection.HTTP_NOT_FOUND field.
/* w w w. j a v a2 s.co m*/
import java.net.HttpURLConnection;
import java.net.URL;
public class Main {
public static void main(String[] argv) throws Exception {
HttpURLConnection.setFollowRedirects(false);
HttpURLConnection con = (HttpURLConnection) new URL("http://www.google.coom").openConnection();
con.setRequestMethod("HEAD");
System.out.println(con.getResponseCode() == HttpURLConnection.HTTP_NOT_FOUND);
}
}