`

Http各种状态

阅读更多
package org.apache.http;

public interface HttpStatus {

    // --- 1xx Informational ---

    /** <tt>100 Continue</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_CONTINUE = 100;
    /** <tt>101 Switching Protocols</tt> (HTTP/1.1 - RFC 2616)*/
    public static final int SC_SWITCHING_PROTOCOLS = 101;
    /** <tt>102 Processing</tt> (WebDAV - RFC 2518) */
    public static final int SC_PROCESSING = 102;

    // --- 2xx Success ---

    /** <tt>200 OK</tt> (HTTP/1.0 - RFC 1945) */
    public static final int SC_OK = 200;
    /** <tt>201 Created</tt> (HTTP/1.0 - RFC 1945) */
    public static final int SC_CREATED = 201;
    /** <tt>202 Accepted</tt> (HTTP/1.0 - RFC 1945) */
    public static final int SC_ACCEPTED = 202;
    /** <tt>203 Non Authoritative Information</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_NON_AUTHORITATIVE_INFORMATION = 203;
    /** <tt>204 No Content</tt> (HTTP/1.0 - RFC 1945) */
    public static final int SC_NO_CONTENT = 204;
    /** <tt>205 Reset Content</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_RESET_CONTENT = 205;
    /** <tt>206 Partial Content</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_PARTIAL_CONTENT = 206;
    /**
     * <tt>207 Multi-Status</tt> (WebDAV - RFC 2518) or <tt>207 Partial Update
     * OK</tt> (HTTP/1.1 - draft-ietf-http-v11-spec-rev-01?)
     */
    public static final int SC_MULTI_STATUS = 207;

    // --- 3xx Redirection ---

    /** <tt>300 Mutliple Choices</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_MULTIPLE_CHOICES = 300;
    /** <tt>301 Moved Permanently</tt> (HTTP/1.0 - RFC 1945) */
    public static final int SC_MOVED_PERMANENTLY = 301;
    /** <tt>302 Moved Temporarily</tt> (Sometimes <tt>Found</tt>) (HTTP/1.0 - RFC 1945) */
    public static final int SC_MOVED_TEMPORARILY = 302;
    /** <tt>303 See Other</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_SEE_OTHER = 303;
    /** <tt>304 Not Modified</tt> (HTTP/1.0 - RFC 1945) */
    public static final int SC_NOT_MODIFIED = 304;
    /** <tt>305 Use Proxy</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_USE_PROXY = 305;
    /** <tt>307 Temporary Redirect</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_TEMPORARY_REDIRECT = 307;

    // --- 4xx Client Error ---

    /** <tt>400 Bad Request</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_BAD_REQUEST = 400;
    /** <tt>401 Unauthorized</tt> (HTTP/1.0 - RFC 1945) */
    public static final int SC_UNAUTHORIZED = 401;
    /** <tt>402 Payment Required</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_PAYMENT_REQUIRED = 402;
    /** <tt>403 Forbidden</tt> (HTTP/1.0 - RFC 1945) */
    public static final int SC_FORBIDDEN = 403;
    /** <tt>404 Not Found</tt> (HTTP/1.0 - RFC 1945) */
    public static final int SC_NOT_FOUND = 404;
    /** <tt>405 Method Not Allowed</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_METHOD_NOT_ALLOWED = 405;
    /** <tt>406 Not Acceptable</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_NOT_ACCEPTABLE = 406;
    /** <tt>407 Proxy Authentication Required</tt> (HTTP/1.1 - RFC 2616)*/
    public static final int SC_PROXY_AUTHENTICATION_REQUIRED = 407;
    /** <tt>408 Request Timeout</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_REQUEST_TIMEOUT = 408;
    /** <tt>409 Conflict</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_CONFLICT = 409;
    /** <tt>410 Gone</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_GONE = 410;
    /** <tt>411 Length Required</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_LENGTH_REQUIRED = 411;
    /** <tt>412 Precondition Failed</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_PRECONDITION_FAILED = 412;
    /** <tt>413 Request Entity Too Large</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_REQUEST_TOO_LONG = 413;
    /** <tt>414 Request-URI Too Long</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_REQUEST_URI_TOO_LONG = 414;
    /** <tt>415 Unsupported Media Type</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_UNSUPPORTED_MEDIA_TYPE = 415;
    /** <tt>416 Requested Range Not Satisfiable</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_REQUESTED_RANGE_NOT_SATISFIABLE = 416;
    /** <tt>417 Expectation Failed</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_EXPECTATION_FAILED = 417;

    /**
     * Static constant for a 418 error.
     * <tt>418 Unprocessable Entity</tt> (WebDAV drafts?)
     * or <tt>418 Reauthentication Required</tt> (HTTP/1.1 drafts?)
     */
    // not used
    // public static final int SC_UNPROCESSABLE_ENTITY = 418;

    /**
     * Static constant for a 419 error.
     * <tt>419 Insufficient Space on Resource</tt>
     * (WebDAV - draft-ietf-webdav-protocol-05?)
     * or <tt>419 Proxy Reauthentication Required</tt>
     * (HTTP/1.1 drafts?)
     */
    public static final int SC_INSUFFICIENT_SPACE_ON_RESOURCE = 419;
    /**
     * Static constant for a 420 error.
     * <tt>420 Method Failure</tt>
     * (WebDAV - draft-ietf-webdav-protocol-05?)
     */
    public static final int SC_METHOD_FAILURE = 420;
    /** <tt>422 Unprocessable Entity</tt> (WebDAV - RFC 2518) */
    public static final int SC_UNPROCESSABLE_ENTITY = 422;
    /** <tt>423 Locked</tt> (WebDAV - RFC 2518) */
    public static final int SC_LOCKED = 423;
    /** <tt>424 Failed Dependency</tt> (WebDAV - RFC 2518) */
    public static final int SC_FAILED_DEPENDENCY = 424;

    // --- 5xx Server Error ---

    /** <tt>500 Server Error</tt> (HTTP/1.0 - RFC 1945) */
    public static final int SC_INTERNAL_SERVER_ERROR = 500;
    /** <tt>501 Not Implemented</tt> (HTTP/1.0 - RFC 1945) */
    public static final int SC_NOT_IMPLEMENTED = 501;
    /** <tt>502 Bad Gateway</tt> (HTTP/1.0 - RFC 1945) */
    public static final int SC_BAD_GATEWAY = 502;
    /** <tt>503 Service Unavailable</tt> (HTTP/1.0 - RFC 1945) */
    public static final int SC_SERVICE_UNAVAILABLE = 503;
    /** <tt>504 Gateway Timeout</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_GATEWAY_TIMEOUT = 504;
    /** <tt>505 HTTP Version Not Supported</tt> (HTTP/1.1 - RFC 2616) */
    public static final int SC_HTTP_VERSION_NOT_SUPPORTED = 505;

    /** <tt>507 Insufficient Storage</tt> (WebDAV - RFC 2518) */
    public static final int SC_INSUFFICIENT_STORAGE = 507;

}

 

分享到:
评论

相关推荐

    HTTP状态码大全

    各种http状态返回码

    PHP返回HTTP协议状态码

    PHP返回HTTP协议状态码,各种不懂的可以看这里

    WEB请求的各种状态码对应

    http请求的状态表!web开发人员必备!

    http状态码

    HTTP 1.1状态代码及其含义。http协议中各种状态码介绍

    所有HTTP状态代码及其定义.doc

    所有HTTP状态代码及其定义,当碰上HTTP打不开或打开后出现各种代码时,可以查阅此文件

    tsschecker, 检查各种设备和固件的tss签名状态的可靠工具.zip

    tsschecker, 检查各种设备和固件的tss签名状态的可靠工具 tsscheckertsschecker是检查各种设备和iOS版本的tss签名状态的强大工具。 可以在以下位置找到最新编译的版本:( macOS Linux Windows )...

    网站状态码

    各种网站状态码,注解说明。 HTTP状态码(英语:HTTP Status Code)是用以表示网页服务器HTTP响应状态的3位数字代码。它由RFC 2616规范定义的,并得到RFC 2518、RFC 2817、RFC 2295、RFC 2774、RFC 4918等规范扩展。...

    automatonSimulator:一个模拟各种有限状态机的网站

    自动机模拟器一个模拟各种有限状态机的网站:确定性有限自动机(DFA),不确定性有限自动机(NFA),下推自动机(PDA)。 提供了一个GUI,用于创建,保存/加载(浏览器本地存储),导出/导入(纯文本格式)和调试...

    各种编解码标准参考手册总汇

    URL编码,ISO语言代码,HTTP状态代码……各种编码标准手册

    EthereumStatusCodes:以太坊智能合约的状态码

    语义丰富HTTP状态代码广泛用于此目的。 BEAM语言使用原子和标记的元组来表示几乎相同的信息。 两者都为程序员(例如调试)和需要决定下一步操作的程序提供了大量信息。 与布尔值相比,ESC传递的信息集要丰富得多,...

    react-use-api:axios的异步HTTP请求数据。 专为各种UI状态,SSR和数据预缓存而设计

    react-use-api使您的代码在两侧之间保持一致,并且还支持应用程序的各种UI状态。 TypeScript支持 线程安全的SSR 安装 :red_exclamation_mark: Axios是对等依赖项(先决条件),必须安装 NPM // NPM $ npm i ...

    http status

    http协议的各种状态码,以及对应的中文意思;对于这些状态码,牢记于心,当在调试web程序的时候,就能尽快的缩小查找问题的范围;希望能够对大家有所帮助。

    couchdb-replicator-status:返回给定 CouchDB 服务器的各种复制任务的状态

    返回、监视和计算给定 CouchDB 服务器的各种复制任务的状态 用法 熟悉这个模块的最好方法是检查.status(options, callback)方法: var replicatorStatus = require ( 'couchdb-replicator-status' ) ; ...

    grafana-statusmap:Grafana面板插件可随时间可视化多个对象的状态

    Grafana的状态图面板 该面板显示随时间推移多个目标的离散状态。特征使用查询中的图例将值分组为行和... 我们已经尝试了各种可用的Grafana插件(它们在下面的致谢中列出),但是没有一个可以提供与我们一直在寻找的功能

    http的具体介绍.doc

    http HTTP,全称Hypertext ...这种无状态性使得HTTP协议更加轻量级和高效,但也需要在应用层面通过其他手段(如Cookie和Session)来维护用户状态。 基于文本传输:HTTP协议使用ASCII码作为通信协议,每个请求和响

    透视HTTP协议 下载....

    03-HTTP世界全览(上):与HTTP相关的各种概念.mp3 04-HTTP世界全览(下):与HTTP相关的各种协议.mp3 05-常说的"四层"和"七层"到底是什么?“五层""六层"哪去了?.mp3 06-域名里有哪些门道?.mp3 07-自己动手,搭建HTTP...

    [asp+ajax]鱼鱼webim即时通讯20090417(修改了一些程序错误,增加状态图标images\status下)

    [asp+ajax]鱼鱼webim即时通讯20090417(修改了一些程序错误,增加状态图标images\status下) 本程序版权归鱼鱼qq260332019所有, 此程序非经鱼鱼许可禁止用于商业用途, 作者保留该程序名称、源码的所有相关权利] ...

    MFC中获取各种类指针的方法

    获得各种视图指针如下 1) 在View中获得Doc指针 2) 在App中获得MainFrame指针 3) 在View中获得MainFrame指针 4) 获得View(已建立)指针 5) 获得当前文档指针 6) 获得状态栏与工具栏指针 7) 获得状态栏与工具栏变量...

    Best-HTTP2-2.6.2-for-Unity3D-2021

    强大的回调和事件机制:BestHTTP提供了丰富的回调和事件处理程序,可以让开发者方便地处理请求和响应过程中的各种状态和结果。 跨平台支持:BestHTTP适用于Unity游戏开发,并且支持多个平台,包括Windows、Mac、...

Global site tag (gtag.js) - Google Analytics