Java 类com.squareup.okhttp.internal.http.HttpTransport 实例源码

项目:AtlasForAndroid    文件:BundleArchiveRevision.java   
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();
    }
}
项目:LoRaWAN-Smart-Parking    文件:Connection.java   
/** 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);
}
项目:LoRaWAN-Smart-Parking    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:LoRaWAN-Smart-Parking    文件:Connection.java   
/** 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);
}
项目:LoRaWAN-Smart-Parking    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:smart-mirror-app    文件:Connection.java   
/** 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);
}
项目:smart-mirror-app    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:cordova-plugin-background-mode    文件:Connection.java   
/** 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);
}
项目:cordova-plugin-background-mode    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:multirotorstuff-vtx-calc    文件:Connection.java   
/** 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);
}
项目:multirotorstuff-vtx-calc    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:L.TileLayer.Cordova    文件:Connection.java   
/** 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);
}
项目:L.TileLayer.Cordova    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:cordova-android-tv    文件:Connection.java   
/** 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);
}
项目:cordova-android-tv    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:Cordova-Locale-Plugin    文件:Connection.java   
/** 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);
}
项目:Cordova-Locale-Plugin    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:pubnub-rpi-smart-parking    文件:Connection.java   
/** 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);
}
项目:pubnub-rpi-smart-parking    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:IoTgo_Android_App    文件:Connection.java   
/** 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);
}
项目:IoTgo_Android_App    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:CanDoVS2015    文件:Connection.java   
/** 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);
}
项目:CanDoVS2015    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:krakn    文件:Connection.java   
/** 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);
}
项目:krakn    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:krakn    文件:Connection.java   
/** 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);
}
项目:krakn    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:krakn    文件:Connection.java   
/** 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);
}
项目:krakn    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:krakn    文件:Connection.java   
/** 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);
}
项目:krakn    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:krakn    文件:Connection.java   
/** 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);
}
项目:krakn    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:posjs2    文件:Connection.java   
/** 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);
}
项目:posjs2    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:hustElectricity    文件:Connection.java   
/** 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);
}
项目:hustElectricity    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:Wetube    文件:Connection.java   
/** 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);
}
项目:Wetube    文件:Job.java   
@Override public int getChunkLength() {
  return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1;
}
项目:DemoArduinoAndroidCordovaBT    文件:Connection.java   
/** 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);
}