mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-12-23 08:30:44 +00:00
Merge branch 'dev' of https://github.com/DafabHoid/NewPipe into test
This commit is contained in:
commit
067b15c300
@ -2,7 +2,6 @@ package us.shandian.giga.get;
|
|||||||
|
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
||||||
import java.io.BufferedInputStream;
|
|
||||||
import java.io.RandomAccessFile;
|
import java.io.RandomAccessFile;
|
||||||
import java.net.HttpURLConnection;
|
import java.net.HttpURLConnection;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
@ -104,11 +103,11 @@ public class DownloadRunnable implements Runnable {
|
|||||||
|
|
||||||
RandomAccessFile f = new RandomAccessFile(mMission.location + "/" + mMission.name, "rw");
|
RandomAccessFile f = new RandomAccessFile(mMission.location + "/" + mMission.name, "rw");
|
||||||
f.seek(start);
|
f.seek(start);
|
||||||
BufferedInputStream ipt = new BufferedInputStream(conn.getInputStream());
|
java.io.InputStream ipt = conn.getInputStream();
|
||||||
byte[] buf = new byte[512];
|
byte[] buf = new byte[64*1024];
|
||||||
|
|
||||||
while (start < end && mMission.running) {
|
while (start < end && mMission.running) {
|
||||||
int len = ipt.read(buf, 0, 512);
|
int len = ipt.read(buf, 0, buf.length);
|
||||||
|
|
||||||
if (len == -1) {
|
if (len == -1) {
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user