All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----java.net.URLConnection | +----java.net.HttpURLConnection
protected String method
protected int responseCode
protected String responseMessage
public static final int HTTP_OK
public static final int HTTP_CREATEDHTTP_ACCEPTED
public static final int HTTP_ACCEPTEDHTTP_NOT_AUTHORITATIVE
public static final int HTTP_NOT_AUTHORITATIVEHTTP_NO_CONTENT
public static final int HTTP_NO_CONTENTHTTP_RESET
public static final int HTTP_RESETHTTP_PARTIAL
public static final int HTTP_PARTIALHTTP_MULT_CHOICE
public static final int HTTP_MULT_CHOICE
public static final int HTTP_MOVED_PERMHTTP_MOVED_TEMP
public static final int HTTP_MOVED_TEMPHTTP_SEE_OTHER
public static final int HTTP_SEE_OTHERHTTP_NOT_MODIFIED
public static final int HTTP_NOT_MODIFIEDHTTP_USE_PROXY
public static final int HTTP_USE_PROXYHTTP_BAD_REQUEST
public static final int HTTP_BAD_REQUEST
public static final int HTTP_UNAUTHORIZEDHTTP_PAYMENT_REQUIRED
public static final int HTTP_PAYMENT_REQUIREDHTTP_FORBIDDEN
public static final int HTTP_FORBIDDENHTTP_NOT_FOUND
public static final int HTTP_NOT_FOUNDHTTP_BAD_METHOD
public static final int HTTP_BAD_METHODHTTP_NOT_ACCEPTABLE
public static final int HTTP_NOT_ACCEPTABLEHTTP_PROXY_AUTH
public static final int HTTP_PROXY_AUTHHTTP_CLIENT_TIMEOUT
public static final int HTTP_CLIENT_TIMEOUTHTTP_CONFLICT
public static final int HTTP_CONFLICTHTTP_GONE
public static final int HTTP_GONEHTTP_LENGTH_REQUIRED
public static final int HTTP_LENGTH_REQUIREDHTTP_PRECON_FAILED
public static final int HTTP_PRECON_FAILEDHTTP_ENTITY_TOO_LARGE
public static final int HTTP_ENTITY_TOO_LARGEHTTP_REQ_TOO_LONG
public static final int HTTP_REQ_TOO_LONGHTTP_UNSUPPORTED_TYPE
public static final int HTTP_UNSUPPORTED_TYPEHTTP_SERVER_ERROR
public static final int HTTP_SERVER_ERROR
public static final int HTTP_INTERNAL_ERRORHTTP_BAD_GATEWAY
public static final int HTTP_BAD_GATEWAYHTTP_UNAVAILABLE
public static final int HTTP_UNAVAILABLEHTTP_GATEWAY_TIMEOUT
public static final int HTTP_GATEWAY_TIMEOUTHTTP_VERSION
public static final int HTTP_VERSION
protected HttpURLConnection(URL u)
public static void setFollowRedirects(boolean set)
public static boolean getFollowRedirects()
public void setRequestMethod(String method) throws ProtocolException
public String getRequestMethod()
public int getResponseCode() throws IOException
HTTP/1.0 200 OK HTTP/1.0 401 UnauthorizedExtracts the ints 200 and 401 respectively. Returns -1 if none can be discerned from the response (i.e., the response is not valid HTTP).
public String getResponseMessage() throws IOException
HTTP/1.0 200 OK HTTP/1.0 404 Not FoundExtracts the Strings "OK" and "Not Found" respectively. Returns null if none could be discerned from the responses (the result was not valid HTTP).
public abstract void disconnect()
public abstract boolean usingProxy()
All Packages Class Hierarchy This Package Previous Next Index