JDK或android SDK上的HTTP GET,POST,PUT的常量

时间:2017-12-20 02:05:27

标签: java android

是否有任何针对Android的HTTP GET,POST,PUT的枚举或常量?

就我的搜索而言,JAVA EE或spring有这样的常数。但未能在Android上找到这些。

如果在android中不存在,我需要为HTTP创建自己的枚举。

enum RequestMethod {
  GET, POST, PUT, ...;
}

1 个答案:

答案 0 :(得分:0)

com.android.volley.Request课程中,您可以找到用于此目的的界面:

    public interface Method {
    int DEPRECATED_GET_OR_POST = -1;
    int GET = 0;
    int POST = 1;
    int PUT = 2;
    int DELETE = 3;
    int HEAD = 4;
    int OPTIONS = 5;
    int TRACE = 6;
    int PATCH = 7;
}

只有这样才能使用它,你必须包含Volley作为依赖。