com.squareup.okhttp.internal.http.HttpTransport Java Examples
The following examples show how to use
com.squareup.okhttp.internal.http.HttpTransport.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BundleArchiveRevision.java From AtlasForAndroid with MIT License | 5 votes |
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(); } }
Example #2
Source File: Connection.java From cordova-amazon-fireos with Apache License 2.0 | 4 votes |
/** 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); }
Example #3
Source File: Job.java From crosswalk-cordova-android with Apache License 2.0 | 4 votes |
@Override public int getChunkLength() { return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1; }
Example #4
Source File: Connection.java From crosswalk-cordova-android with Apache License 2.0 | 4 votes |
/** 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); }
Example #5
Source File: Connection.java From phonegap-plugin-loading-spinner with Apache License 2.0 | 4 votes |
/** 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); }
Example #6
Source File: Job.java From wildfly-samples with MIT License | 4 votes |
@Override public int getChunkLength() { return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1; }
Example #7
Source File: Connection.java From wildfly-samples with MIT License | 4 votes |
/** 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); }
Example #8
Source File: Connection.java From cordova-android-chromeview with Apache License 2.0 | 4 votes |
/** 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); }
Example #9
Source File: Job.java From CordovaYoutubeVideoPlayer with MIT License | 4 votes |
@Override public int getChunkLength() { return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1; }
Example #10
Source File: Connection.java From CordovaYoutubeVideoPlayer with MIT License | 4 votes |
/** 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); }
Example #11
Source File: Job.java From phonegapbootcampsite with MIT License | 4 votes |
@Override public int getChunkLength() { return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1; }
Example #12
Source File: Connection.java From phonegapbootcampsite with MIT License | 4 votes |
/** 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); }
Example #13
Source File: Job.java From cordova-amazon-fireos with Apache License 2.0 | 4 votes |
@Override public int getChunkLength() { return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1; }
Example #14
Source File: Connection.java From L.TileLayer.Cordova with MIT License | 4 votes |
/** 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); }
Example #15
Source File: Job.java From reader with MIT License | 4 votes |
@Override public int getChunkLength() { return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1; }
Example #16
Source File: Connection.java From reader with MIT License | 4 votes |
/** 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); }
Example #17
Source File: Job.java From reader with MIT License | 4 votes |
@Override public int getChunkLength() { return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1; }
Example #18
Source File: Connection.java From reader with MIT License | 4 votes |
/** 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); }
Example #19
Source File: Job.java From bluemix-parking-meter with MIT License | 4 votes |
@Override public int getChunkLength() { return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1; }
Example #20
Source File: Connection.java From bluemix-parking-meter with MIT License | 4 votes |
/** 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); }
Example #21
Source File: Connection.java From android-discourse with Apache License 2.0 | 4 votes |
/** * 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); }
Example #22
Source File: Job.java From IoTgo_Android_App with MIT License | 4 votes |
@Override public int getChunkLength() { return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1; }
Example #23
Source File: Connection.java From IoTgo_Android_App with MIT License | 4 votes |
/** 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); }
Example #24
Source File: Job.java From L.TileLayer.Cordova with MIT License | 4 votes |
@Override public int getChunkLength() { return request.body().contentLength() == -1 ? HttpTransport.DEFAULT_CHUNK_LENGTH : -1; }