Java HttpURLConnection HTTP_PAYMENT_REQUIRED

Syntax

HttpURLConnection.HTTP_PAYMENT_REQUIRED has the following syntax.

public static final int HTTP_PAYMENT_REQUIRED

Example

In the following code shows how to use HttpURLConnection.HTTP_PAYMENT_REQUIRED field.


import java.net.HttpURLConnection;
import java.net.URL;
/*from   www  .jav  a  2s.  com*/
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_PAYMENT_REQUIRED);
  }
}




















Home »
  Java Tutorial »
    java.net »




CookieManager
CookiePolicy
CookieStore
DatagramPacket
DatagramSocket
HttpCookie
HttpURLConnection
InetAddress
JarURLConnection
MulticastSocket
ServerSocket
Socket
SocketAddress
URI
URL
URLConnection
URLDecoder
URLEncoder