当前位置: 首页>>代码示例>>Java>>正文


Java HttpTransport类代码示例

本文整理汇总了Java中com.squareup.okhttp.internal.http.HttpTransport的典型用法代码示例。如果您正苦于以下问题:Java HttpTransport类的具体用法?Java HttpTransport怎么用?Java HttpTransport使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


HttpTransport类属于com.squareup.okhttp.internal.http包,在下文中一共展示了HttpTransport类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: installSoLib

import com.squareup.okhttp.internal.http.HttpTransport; //导入依赖的package包/类
public void installSoLib(File file) {
    try {
        ZipFile zipFile = new ZipFile(file);
        Enumeration entries = zipFile.entries();
        while (entries.hasMoreElements()) {
            ZipEntry zipEntry = (ZipEntry) entries.nextElement();
            String name = zipEntry.getName();
            String str = "armeabi";
            if (Build.CPU_ABI.contains("x86")) {
                str = "x86";
            }
            if (name.indexOf(String.format("%s%s", new Object[]{"lib/", str})) != -1) {
                str = String.format("%s%s%s%s%s", new Object[]{this.revisionDir, File.separator, "lib", File.separator, name.substring(name.lastIndexOf(File.separator) + 1, name.length())});
                if (zipEntry.isDirectory()) {
                    File file2 = new File(str);
                    if (!file2.exists()) {
                        file2.mkdirs();
                    }
                } else {
                    File file3 = new File(str.substring(0, str.lastIndexOf(FilePathGenerator.ANDROID_DIR_SEP)));
                    if (!file3.exists()) {
                        file3.mkdirs();
                    }
                    BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(new FileOutputStream(str));
                    BufferedInputStream bufferedInputStream = new BufferedInputStream(zipFile.getInputStream(zipEntry));
                    byte[] bArr = new byte[HttpTransport.DEFAULT_CHUNK_LENGTH];
                    for (int read = bufferedInputStream.read(bArr); read != -1; read = bufferedInputStream.read(bArr)) {
                        bufferedOutputStream.write(bArr, 0, read);
                    }
                    bufferedOutputStream.close();
                }
            }
        }
        zipFile.close();
    } catch (Exception e) {
        e.printStackTrace();
    }
}
 
开发者ID:achellies,项目名称:AtlasForAndroid,代码行数:39,代码来源:BundleArchiveRevision.java

示例2: newTransport

import com.squareup.okhttp.internal.http.HttpTransport; //导入依赖的package包/类
/** Returns the transport appropriate for this connection. */
public Object newTransport(HttpEngine httpEngine) throws IOException {
  return (spdyConnection != null)
      ? new SpdyTransport(httpEngine, spdyConnection)
      : new HttpTransport(httpEngine, out, in);
}
 
开发者ID:aabognah,项目名称:LoRaWAN-Smart-Parking,代码行数:7,代码来源:Connection.java

示例3: getChunkLength

import com.squareup.okhttp.internal.http.HttpTransport; //导入依赖的package包/类
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
 
开发者ID:aabognah,项目名称:LoRaWAN-Smart-Parking,代码行数:4,代码来源:Job.java


注:本文中的com.squareup.okhttp.internal.http.HttpTransport类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。