org.apache.http.client.utils.URIBuilder.parseQuery()方法的使用及代码示例

x33g5p2x  于2022-01-31 转载在 其他  
字(7.5k)|赞(0)|评价(0)|浏览(184)

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

URIBuilder.parseQuery介绍

暂无

代码示例

代码示例来源:origin: ibinti/bugvm

/**
 * Sets URI query.
 * <p>
 * The value is expected to be encoded form data.
 *
 * @deprecated (4.3) use {@link #setParameters(List)} or {@link #setParameters(NameValuePair...)}
 *
 * @see URLEncodedUtils#parse
 */
@Deprecated
public URIBuilder setQuery(final String query) {
  this.queryParams = parseQuery(query, this.charset != null ? this.charset : Consts.UTF_8);
  this.query = null;
  this.encodedQuery = null;
  this.encodedSchemeSpecificPart = null;
  return this;
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Sets URI query.
 * <p>
 * The value is expected to be encoded form data.
 *
 * @deprecated (4.3) use {@link #setParameters(List)} or {@link #setParameters(NameValuePair...)}
 *
 * @see URLEncodedUtils#parse
 */
@Deprecated
public URIBuilder setQuery(final String query) {
  this.queryParams = parseQuery(query, this.charset != null ? this.charset : Consts.UTF_8);
  this.query = null;
  this.encodedQuery = null;
  this.encodedSchemeSpecificPart = null;
  return this;
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/**
 * Sets URI query.
 * <p>
 * The value is expected to be encoded form data.
 *
 * @deprecated (4.3) use {@link #setParameters(List)} or {@link #setParameters(NameValuePair...)}
 *
 * @see URLEncodedUtils#parse
 */
@Deprecated
public URIBuilder setQuery(final String query) {
  this.queryParams = parseQuery(query, this.charset != null ? this.charset : Consts.UTF_8);
  this.query = null;
  this.encodedQuery = null;
  this.encodedSchemeSpecificPart = null;
  return this;
}

代码示例来源:origin: org.apache.httpcomponents/httpclient-android

/**
 * Sets URI query.
 * <p>
 * The value is expected to be encoded form data.
 *
 * @deprecated (4.3) use {@link #setParameters(List)} or {@link #setParameters(NameValuePair...)}
 *
 * @see URLEncodedUtilsHC4#parse
 */
@Deprecated
public URIBuilder setQuery(final String query) {
  this.queryParams = parseQuery(query, Consts.UTF_8);
  this.query = null;
  this.encodedQuery = null;
  this.encodedSchemeSpecificPart = null;
  return this;
}

代码示例来源:origin: com.hynnet/httpclient

/**
 * Sets URI query.
 * <p>
 * The value is expected to be encoded form data.
 *
 * @deprecated (4.3) use {@link #setParameters(List)} or {@link #setParameters(NameValuePair...)}
 *
 * @see URLEncodedUtils#parse
 */
@Deprecated
public URIBuilder setQuery(final String query) {
  this.queryParams = parseQuery(query, this.charset != null ? this.charset : Consts.UTF_8);
  this.query = null;
  this.encodedQuery = null;
  this.encodedSchemeSpecificPart = null;
  return this;
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.apache.httpcomponents.httpclient

/**
 * Sets URI query.
 * <p>
 * The value is expected to be encoded form data.
 *
 * @deprecated (4.3) use {@link #setParameters(List)} or {@link #setParameters(NameValuePair...)}
 *
 * @see URLEncodedUtils#parse
 */
@Deprecated
public URIBuilder setQuery(final String query) {
  this.queryParams = parseQuery(query, Consts.UTF_8);
  this.query = null;
  this.encodedQuery = null;
  this.encodedSchemeSpecificPart = null;
  return this;
}

代码示例来源:origin: Nextdoor/bender

/**
 * Sets URI query.
 * <p>
 * The value is expected to be encoded form data.
 *
 * @deprecated (4.3) use {@link #setParameters(List)} or {@link #setParameters(NameValuePair...)}
 *
 * @see URLEncodedUtils#parse
 */
@Deprecated
public URIBuilder setQuery(final String query) {
  this.queryParams = parseQuery(query, this.charset != null ? this.charset : Consts.UTF_8);
  this.query = null;
  this.encodedQuery = null;
  this.encodedSchemeSpecificPart = null;
  return this;
}

代码示例来源:origin: org.apache.httpcomponents/httpclient-android

private void digestURI(final URI uri) {
  this.scheme = uri.getScheme();
  this.encodedSchemeSpecificPart = uri.getRawSchemeSpecificPart();
  this.encodedAuthority = uri.getRawAuthority();
  this.host = uri.getHost();
  this.port = uri.getPort();
  this.encodedUserInfo = uri.getRawUserInfo();
  this.userInfo = uri.getUserInfo();
  this.encodedPath = uri.getRawPath();
  this.path = uri.getPath();
  this.encodedQuery = uri.getRawQuery();
  this.queryParams = parseQuery(uri.getRawQuery(), Consts.UTF_8);
  this.encodedFragment = uri.getRawFragment();
  this.fragment = uri.getFragment();
}

代码示例来源:origin: ibinti/bugvm

private void digestURI(final URI uri) {
  this.scheme = uri.getScheme();
  this.encodedSchemeSpecificPart = uri.getRawSchemeSpecificPart();
  this.encodedAuthority = uri.getRawAuthority();
  this.host = uri.getHost();
  this.port = uri.getPort();
  this.encodedUserInfo = uri.getRawUserInfo();
  this.userInfo = uri.getUserInfo();
  this.encodedPath = uri.getRawPath();
  this.path = uri.getPath();
  this.encodedQuery = uri.getRawQuery();
  this.queryParams = parseQuery(uri.getRawQuery(), this.charset != null ? this.charset : Consts.UTF_8);
  this.encodedFragment = uri.getRawFragment();
  this.fragment = uri.getFragment();
}

代码示例来源:origin: com.hynnet/httpclient

private void digestURI(final URI uri) {
  this.scheme = uri.getScheme();
  this.encodedSchemeSpecificPart = uri.getRawSchemeSpecificPart();
  this.encodedAuthority = uri.getRawAuthority();
  this.host = uri.getHost();
  this.port = uri.getPort();
  this.encodedUserInfo = uri.getRawUserInfo();
  this.userInfo = uri.getUserInfo();
  this.encodedPath = uri.getRawPath();
  this.path = uri.getPath();
  this.encodedQuery = uri.getRawQuery();
  this.queryParams = parseQuery(uri.getRawQuery(), this.charset != null ? this.charset : Consts.UTF_8);
  this.encodedFragment = uri.getRawFragment();
  this.fragment = uri.getFragment();
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

private void digestURI(final URI uri) {
  this.scheme = uri.getScheme();
  this.encodedSchemeSpecificPart = uri.getRawSchemeSpecificPart();
  this.encodedAuthority = uri.getRawAuthority();
  this.host = uri.getHost();
  this.port = uri.getPort();
  this.encodedUserInfo = uri.getRawUserInfo();
  this.userInfo = uri.getUserInfo();
  this.encodedPath = uri.getRawPath();
  this.path = uri.getPath();
  this.encodedQuery = uri.getRawQuery();
  this.queryParams = parseQuery(uri.getRawQuery(), this.charset != null ? this.charset : Consts.UTF_8);
  this.encodedFragment = uri.getRawFragment();
  this.fragment = uri.getFragment();
}

代码示例来源:origin: Nextdoor/bender

private void digestURI(final URI uri) {
  this.scheme = uri.getScheme();
  this.encodedSchemeSpecificPart = uri.getRawSchemeSpecificPart();
  this.encodedAuthority = uri.getRawAuthority();
  this.host = uri.getHost();
  this.port = uri.getPort();
  this.encodedUserInfo = uri.getRawUserInfo();
  this.userInfo = uri.getUserInfo();
  this.encodedPath = uri.getRawPath();
  this.path = uri.getPath();
  this.encodedQuery = uri.getRawQuery();
  this.queryParams = parseQuery(uri.getRawQuery(), this.charset != null ? this.charset : Consts.UTF_8);
  this.encodedFragment = uri.getRawFragment();
  this.fragment = uri.getFragment();
}

代码示例来源:origin: com.bugvm/bugvm-rt

private void digestURI(final URI uri) {
  this.scheme = uri.getScheme();
  this.encodedSchemeSpecificPart = uri.getRawSchemeSpecificPart();
  this.encodedAuthority = uri.getRawAuthority();
  this.host = uri.getHost();
  this.port = uri.getPort();
  this.encodedUserInfo = uri.getRawUserInfo();
  this.userInfo = uri.getUserInfo();
  this.encodedPath = uri.getRawPath();
  this.path = uri.getPath();
  this.encodedQuery = uri.getRawQuery();
  this.queryParams = parseQuery(uri.getRawQuery(), this.charset != null ? this.charset : Consts.UTF_8);
  this.encodedFragment = uri.getRawFragment();
  this.fragment = uri.getFragment();
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.apache.httpcomponents.httpclient

private void digestURI(final URI uri) {
  this.scheme = uri.getScheme();
  this.encodedSchemeSpecificPart = uri.getRawSchemeSpecificPart();
  this.encodedAuthority = uri.getRawAuthority();
  this.host = uri.getHost();
  this.port = uri.getPort();
  this.encodedUserInfo = uri.getRawUserInfo();
  this.userInfo = uri.getUserInfo();
  this.encodedPath = uri.getRawPath();
  this.path = uri.getPath();
  this.encodedQuery = uri.getRawQuery();
  this.queryParams = parseQuery(uri.getRawQuery(), Consts.UTF_8);
  this.encodedFragment = uri.getRawFragment();
  this.fragment = uri.getFragment();
}

相关文章