本文整理匯總了Java中java.net.CacheRequest.getBody方法的典型用法代碼示例。如果您正苦於以下問題:Java CacheRequest.getBody方法的具體用法?Java CacheRequest.getBody怎麽用?Java CacheRequest.getBody使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類java.net.CacheRequest
的用法示例。
在下文中一共展示了CacheRequest.getBody方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: HttpInputStream
import java.net.CacheRequest; //導入方法依賴的package包/類
public HttpInputStream (InputStream is, CacheRequest cacheRequest) {
super (is);
this.cacheRequest = cacheRequest;
try {
this.outputStream = cacheRequest.getBody();
} catch (IOException ioex) {
this.cacheRequest.abort();
this.cacheRequest = null;
this.outputStream = null;
}
}
示例2: AbstractHttpInputStream
import java.net.CacheRequest; //導入方法依賴的package包/類
AbstractHttpInputStream(InputStream in, HttpEngine httpEngine, CacheRequest cacheRequest)
throws IOException {
this.in = in;
this.httpEngine = httpEngine;
OutputStream cacheBody = cacheRequest != null ? cacheRequest.getBody() : null;
// some apps return a null body; for compatibility we treat that like a null cache request
if (cacheBody == null) {
cacheRequest = null;
}
this.cacheBody = cacheBody;
this.cacheRequest = cacheRequest;
}
示例3: HttpInputStream
import java.net.CacheRequest; //導入方法依賴的package包/類
public HttpInputStream(final InputStream is, final CacheRequest cacheRequest)
{
super(is);
this.cacheRequest = cacheRequest;
try
{
this.outputStream = cacheRequest.getBody();
}
catch (final IOException ioex)
{
this.cacheRequest.abort();
this.cacheRequest = null;
this.outputStream = null;
}
}