本文整理汇总了Java中ch.boye.httpclientandroidlib.params.HttpProtocolParams.getVersion方法的典型用法代码示例。如果您正苦于以下问题:Java HttpProtocolParams.getVersion方法的具体用法?Java HttpProtocolParams.getVersion怎么用?Java HttpProtocolParams.getVersion使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ch.boye.httpclientandroidlib.params.HttpProtocolParams
的用法示例。
在下文中一共展示了HttpProtocolParams.getVersion方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createConnectRequest
import ch.boye.httpclientandroidlib.params.HttpProtocolParams; //导入方法依赖的package包/类
/**
* Creates the CONNECT request for tunnelling.
* Called by {@link #createTunnelToTarget createTunnelToTarget}.
*
* @param route the route to establish
* @param context the context for request execution
*
* @return the CONNECT request for tunnelling
*/
protected HttpRequest createConnectRequest(final HttpRoute route,
final HttpContext context) {
// see RFC 2817, section 5.2 and
// INTERNET-DRAFT: Tunneling TCP based protocols through
// Web proxy servers
final HttpHost target = route.getTargetHost();
final String host = target.getHostName();
int port = target.getPort();
if (port < 0) {
final Scheme scheme = connManager.getSchemeRegistry().
getScheme(target.getSchemeName());
port = scheme.getDefaultPort();
}
final StringBuilder buffer = new StringBuilder(host.length() + 6);
buffer.append(host);
buffer.append(':');
buffer.append(Integer.toString(port));
final String authority = buffer.toString();
final ProtocolVersion ver = HttpProtocolParams.getVersion(params);
final HttpRequest req = new BasicHttpRequest
("CONNECT", authority, ver);
return req;
}
示例2: getProtocolVersion
import ch.boye.httpclientandroidlib.params.HttpProtocolParams; //导入方法依赖的package包/类
public ProtocolVersion getProtocolVersion() {
return version != null ? version : HttpProtocolParams.getVersion(getParams());
}
示例3: getProtocolVersion
import ch.boye.httpclientandroidlib.params.HttpProtocolParams; //导入方法依赖的package包/类
public ProtocolVersion getProtocolVersion() {
if (this.version == null) {
this.version = HttpProtocolParams.getVersion(getParams());
}
return this.version;
}