Java Code Examples for com.squareup.okhttp.internal.http.HttpTransport#DEFAULT_CHUNK_LENGTH
The following examples show how to use
com.squareup.okhttp.internal.http.HttpTransport#DEFAULT_CHUNK_LENGTH .
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: 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; }
Example 3
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 4
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 5
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 6
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 7
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 8
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 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: 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 11
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; }