com.android.volley.Request.getParams()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(10.2k)|赞(0)|评价(0)|浏览(100)

本文整理了Java中com.android.volley.Request.getParams方法的一些代码示例,展示了Request.getParams的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.getParams方法的具体详情如下:
包路径:com.android.volley.Request
类名称:Request
方法名:getParams

Request.getParams介绍

[英]Returns a Map of parameters to be used for a POST or PUT request. Can throw AuthFailureError as authentication may be required to provide these values.

Note that you can directly override #getBody() for custom data.
[中]返回用于POST或PUT请求的参数映射。可能会抛出AuthFailureError,因为提供这些值可能需要身份验证。
请注意,对于自定义数据,可以直接重写#getBody()。

代码示例

代码示例来源:origin: mcxiaoke/android-volley

/**
 * Returns a Map of POST parameters to be used for this request, or null if
 * a simple GET should be used.  Can throw {@link AuthFailureError} as
 * authentication may be required to provide these values.
 *
 * <p>Note that only one of getPostParams() and getPostBody() can return a non-null
 * value.</p>
 * @throws AuthFailureError In the event of auth failure
 *
 * @deprecated Use {@link #getParams()} instead.
 */
@Deprecated
protected Map<String, String> getPostParams() throws AuthFailureError {
  return getParams();
}

代码示例来源:origin: mcxiaoke/android-volley

/**
 * Returns the raw POST or PUT body to be sent.
 *
 * <p>By default, the body consists of the request parameters in
 * application/x-www-form-urlencoded format. When overriding this method, consider overriding
 * {@link #getBodyContentType()} as well to match the new body format.
 *
 * @throws AuthFailureError in the event of auth failure
 */
public byte[] getBody() throws AuthFailureError {
  Map<String, String> params = getParams();
  if (params != null && params.size() > 0) {
    return encodeParameters(params, getParamsEncoding());
  }
  return null;
}

代码示例来源:origin: chentao0707/SimplifyReader

/**
 * Returns the raw POST or PUT body to be sent.
 *
 * <p>By default, the body consists of the request parameters in
 * application/x-www-form-urlencoded format. When overriding this method, consider overriding
 * {@link #getBodyContentType()} as well to match the new body format.
 *
 * @throws AuthFailureError in the event of auth failure
 */
public byte[] getBody() throws AuthFailureError {
  Map<String, String> params = getParams();
  if (params != null && params.size() > 0) {
    return encodeParameters(params, getParamsEncoding());
  }
  return null;
}

代码示例来源:origin: chentao0707/SimplifyReader

/**
 * Returns a Map of POST parameters to be used for this request, or null if
 * a simple GET should be used.  Can throw {@link AuthFailureError} as
 * authentication may be required to provide these values.
 *
 * <p>Note that only one of getPostParams() and getPostBody() can return a non-null
 * value.</p>
 * @throws AuthFailureError In the event of auth failure
 *
 * @deprecated Use {@link #getParams()} instead.
 */
@Deprecated
protected Map<String, String> getPostParams() throws AuthFailureError {
  return getParams();
}

代码示例来源:origin: jiangqqlmj/FastDev4Android

/**
 * Returns the raw POST or PUT body to be sent.
 * 如果请求是POST或者PUT方法,去获取请求参数信息,然后设置到请求中
 * <p>By default, the body consists of the request parameters in
 * application/x-www-form-urlencoded format. When overriding this method, consider overriding
 * {@link #getBodyContentType()} as well to match the new body format.
 *
 * @throws AuthFailureError in the event of auth failure
 */
public byte[] getBody() throws AuthFailureError {
  //获取请求参数信息
  Map<String, String> params = getParams();
  if (params != null && params.size() > 0) {
    return encodeParameters(params, getParamsEncoding());
  }
  return null;
}

代码示例来源:origin: jiangqqlmj/FastDev4Android

/**
 * Returns a Map of POST parameters to be used for this request, or null if
 * a simple GET should be used.  Can throw {@link AuthFailureError} as
 * authentication may be required to provide these values.
 *
 * <p>Note that only one of getPostParams() and getPostBody() can return a non-null
 * value.</p>
 * @throws AuthFailureError In the event of auth failure
 *
 * @deprecated Use {@link #getParams()} instead.
 */
@Deprecated
protected Map<String, String> getPostParams() throws AuthFailureError {
  return getParams();
}

代码示例来源:origin: xuningjack/AndroidNet

/**
 * Returns the raw POST or PUT body to be sent.
 *
 * @throws AuthFailureError in the event of auth failure
 */
public byte[] getBody() throws AuthFailureError {
  Map<String, String> params = getParams();
  if (params != null && params.size() > 0) {
    return encodeParameters(params, getParamsEncoding());
  }
  return null;
}

代码示例来源:origin: googolmo/OkVolley

@Override
@Deprecated
protected Map<String, String> getParams() throws AuthFailureError {
  return super.getParams();
}

代码示例来源:origin: com.mcxiaoke.volley/library

/**
 * Returns the raw POST or PUT body to be sent.
 *
 * <p>By default, the body consists of the request parameters in
 * application/x-www-form-urlencoded format. When overriding this method, consider overriding
 * {@link #getBodyContentType()} as well to match the new body format.
 *
 * @throws AuthFailureError in the event of auth failure
 */
public byte[] getBody() throws AuthFailureError {
  Map<String, String> params = getParams();
  if (params != null && params.size() > 0) {
    return encodeParameters(params, getParamsEncoding());
  }
  return null;
}

代码示例来源:origin: com.mcxiaoke.volley/library

/**
 * Returns a Map of POST parameters to be used for this request, or null if
 * a simple GET should be used.  Can throw {@link AuthFailureError} as
 * authentication may be required to provide these values.
 *
 * <p>Note that only one of getPostParams() and getPostBody() can return a non-null
 * value.</p>
 * @throws AuthFailureError In the event of auth failure
 *
 * @deprecated Use {@link #getParams()} instead.
 */
@Deprecated
protected Map<String, String> getPostParams() throws AuthFailureError {
  return getParams();
}

代码示例来源:origin: MewX/light-novel-library_Wenku8_Android

/**
 * Returns the raw POST or PUT body to be sent.
 *
 * <p>By default, the body consists of the request parameters in
 * application/x-www-form-urlencoded format. When overriding this method, consider overriding
 * {@link #getBodyContentType()} as well to match the new body format.
 *
 * @throws AuthFailureError in the event of auth failure
 */
public byte[] getBody() throws AuthFailureError {
  Map<String, String> params = getParams();
  if (params != null && params.size() > 0) {
    return encodeParameters(params, getParamsEncoding());
  }
  return null;
}

代码示例来源:origin: panxw/android-volley-manager

/**
 * Returns a Map of POST parameters to be used for this request, or null if
 * a simple GET should be used.  Can throw {@link AuthFailureError} as
 * authentication may be required to provide these values.
 *
 * <p>Note that only one of getPostParams() and getPostBody() can return a non-null
 * value.</p>
 * @throws AuthFailureError In the event of auth failure
 *
 * @deprecated Use {@link #getParams()} instead.
 */
@Deprecated
protected Map<String, String> getPostParams() throws AuthFailureError {
  return getParams();
}

代码示例来源:origin: tazimete/android-app-food-delivery-system

/**
 * Returns the raw POST or PUT body to be sent.
 *
 * <p>By default, the body consists of the request parameters in
 * application/x-www-form-urlencoded format. When overriding this method, consider overriding
 * {@link #getBodyContentType()} as well to match the new body format.
 *
 * @throws AuthFailureError in the event of auth failure
 */
public byte[] getBody() throws AuthFailureError {
  Map<String, String> params = getParams();
  if (params != null && params.size() > 0) {
    return encodeParameters(params, getParamsEncoding());
  }
  return null;
}

代码示例来源:origin: MewX/light-novel-library_Wenku8_Android

/**
 * Returns a Map of POST parameters to be used for this request, or null if
 * a simple GET should be used.  Can throw {@link AuthFailureError} as
 * authentication may be required to provide these values.
 *
 * <p>Note that only one of getPostParams() and getPostBody() can return a non-null
 * value.</p>
 * @throws AuthFailureError In the event of auth failure
 *
 * @deprecated Use {@link #getParams()} instead.
 */
@Deprecated
protected Map<String, String> getPostParams() throws AuthFailureError {
  return getParams();
}

代码示例来源:origin: jungletian/TitanjumNote

/**
 * Returns a Map of POST parameters to be used for this request, or null if
 * a simple GET should be used.  Can throw {@link AuthFailureError} as
 * authentication may be required to provide these values.
 *
 * <p>Note that only one of getPostParams() and getPostBody() can return a non-null
 * value.</p>
 * @throws AuthFailureError In the event of auth failure
 *
 * @deprecated Use {@link #getParams()} instead.
 */
@Deprecated
protected Map<String, String> getPostParams() throws AuthFailureError {
  return getParams();
}

代码示例来源:origin: AnandChowdhary/saga-android

/**
 * Returns a Map of POST parameters to be used for this request, or null if
 * a simple GET should be used.  Can throw {@link AuthFailureError} as
 * authentication may be required to provide these values.
 *
 * <p>Note that only one of getPostParams() and getPostBody() can return a non-null
 * value.</p>
 * @throws AuthFailureError In the event of auth failure
 *
 * @deprecated Use {@link #getParams()} instead.
 */
@Deprecated
protected Map<String, String> getPostParams() throws AuthFailureError {
  return getParams();
}

代码示例来源:origin: chuyangliu/tastysnake

/**
 * Returns a Map of POST parameters to be used for this request, or null if
 * a simple GET should be used.  Can throw {@link AuthFailureError} as
 * authentication may be required to provide these values.
 *
 * <p>Note that only one of getPostParams() and getPostBody() can return a non-null
 * value.</p>
 * @throws AuthFailureError In the event of auth failure
 *
 * @deprecated Use {@link #getParams()} instead.
 */
@Deprecated
protected Map<String, String> getPostParams() throws AuthFailureError {
  return getParams();
}

代码示例来源:origin: xuningjack/AndroidNet

/**
 * Returns a Map of POST parameters to be used for this request, or null if
 * a simple GET should be used.  Can throw {@link AuthFailureError} as
 * authentication may be required to provide these values.
 *
 * <p>Note that only one of getPostParams() and getPostBody() can return a non-null
 * value.</p>
 * @throws AuthFailureError In the event of auth failure
 *
 * @deprecated Use {@link #getParams()} instead.
 */
@Deprecated
protected Map<String, String> getPostParams() throws AuthFailureError {
  return getParams();
}

代码示例来源:origin: tazimete/android-app-food-delivery-system

/**
 * Returns a Map of POST parameters to be used for this request, or null if
 * a simple GET should be used.  Can throw {@link AuthFailureError} as
 * authentication may be required to provide these values.
 *
 * <p>Note that only one of getPostParams() and getPostBody() can return a non-null
 * value.</p>
 * @throws AuthFailureError In the event of auth failure
 *
 * @deprecated Use {@link #getParams()} instead.
 */
@Deprecated
protected Map<String, String> getPostParams() throws AuthFailureError {
  return getParams();
}

代码示例来源:origin: tazimete/android-app-food-delivery-system

/**
 * Returns a Map of POST parameters to be used for this request, or null if
 * a simple GET should be used.  Can throw {@link AuthFailureError} as
 * authentication may be required to provide these values.
 *
 * <p>Note that only one of getPostParams() and getPostBody() can return a non-null
 * value.</p>
 * @throws AuthFailureError In the event of auth failure
 *
 * @deprecated Use {@link #getParams()} instead.
 */
@Deprecated
protected Map<String, String> getPostParams() throws AuthFailureError {
  return getParams();
}

相关文章

微信公众号

最新文章

更多