多线程学习未解决的Bug

1.遇到不会解决的Bug啦

上篇博客中说想自己实现一下多线程下载一个文件,昨天就尝试写了一下,但遇到了一个不会解决的Bug,问了问别人,暂时也没能解决。这里记录一下,挖个坑,以后再来解决了。


2.Java中的线程池

  • newCachedThreadPool
    可缓存的线程池。没有固定大小,如果线程池中的线程数量超过任务执行的数量,会回收60秒不执行的任务的空闲线程。当任务数量增加时,线程池自己会增加线程来执行任务。而能创建多少,就得看jvm能够创建多少

  • newFixedThreadPool
    固定线程数量大小的线程池,并发线程数量不会超过固定大小,超出的线程会在队列中等待。如果一个正在执行的线程出现异常结束,会创建一个显得线程来代替它

  • newScheduledThreadPool
    也是固定线程数量大小的线程池,可以延迟或者定时周期执行任务

  • newSingleThreadExecutor
    单例线程池。线程池中只有一个线程工作,出现异常会有有个新的线程来代替。线程池会保证所有任务按照指定顺序(FIFO, LIFO, 优先级)执行。


3.Android部分代码

思路:
将一个文件进行分部下载,利用RandomAccessFile来进行读写。一个线程负责一部分,计算好每个线程开始和结束下载位置。

public class HttpUtils {
    /**
     * 固定线程数的线程池
     */
    private static ExecutorService fixedThreadPool;
    private static String downUrl;
    private static File targetFile;
    private static ProgressCallback progressCallback;
    private static long totalLength = 0;

    public HttpUtils(String url) {
        this.downUrl = url;
        fixedThreadPool = Executors.newFixedThreadPool(5);
    }

    public static HttpUtils getInstance(String url) {
        return new HttpUtils(url);
    }

    public HttpUtils into(File file) {
        if (file != null) {
            this.targetFile = file;
        }
        return this;
    }

    public static void downLoad(ProgressCallback progressCallback) {
        if (fixedThreadPool == null) return;
        HttpUtils.progressCallback = progressCallback;
        new Thread(new Runnable() {
            @Override
            public void run() {
                down();
            }
        }).start();
    }
    private static void down() {
        URL url = null;
        URLConnection urlConnection = null;
        try {
            url = new URL(downUrl);
            urlConnection = url.openConnection();
            totalLength = urlConnection.getContentLength();
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        //每部分的大小
        final long part = totalLength / 5;
        for (int i = 0; i < 5; i++) {
            final long startPosition = i * part;
            final URL finalUrl = url;
            final PartFileDown partFileDown = new PartFileDown();
            final int n = i;
            final long finalTotalLength = totalLength;
            fixedThreadPool.execute(new Runnable() {
                @Override
                public void run() {
                    long endLength = n == 4 ? finalTotalLength : (startPosition + part);
                    partFileDown.downData(finalUrl, targetFile, startPosition, endLength, new Callback() {
                        @Override
                        public void currentLength(long currentLength) {
                            Message message = handler.obtainMessage();
                            message.what = 101;
                            message.obj = currentLength;
                            handler.sendMessage(message);
                        }
                    });
                }
            });
        }
    }


    private static Handler handler = new Handler() {
        long current;

        @Override
        public void handleMessage(Message msg) {
            super.handleMessage(msg);
            if (msg.what == 101) {
                current += (long) msg.obj;
                progressCallback.progress(current, totalLength);
                Log.e("current", "--" + current);
            }
        }
    };
}

利用newFixedThreadPool开启5个线程来执行任务。

public class PartFileDown {
    public void downData(URL downLoadUrl, File targetFile, long startPosition, long endPosition, Callback callback) {
        RandomAccessFile raf = null;
        InputStream is = null;
        try {
            URLConnection urlConnection = downLoadUrl.openConnection();
            urlConnection.setAllowUserInteraction(true);
            //设置当前线程下载的起点、终点
            urlConnection.setRequestProperty("Range", "bytes=" + startPosition + "-" + endPosition);
          //  byte[] by = new byte[1024 * 8];
            byte[] by = new byte[1024];

            is = urlConnection.getInputStream();
            raf = new RandomAccessFile(targetFile, "rw");
            int len = 0;
            raf.seek(startPosition);
            while ((len = is.read(by)) != -1) {
                raf.write(by, 0, len);
                callback.currentLength(len);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if (is != null )
                    is.close();
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                is = null;
            }
            try {
                if (raf != null)
                    raf.close();
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                raf = null;
            }
        }
    }
}

代码有Bug就不再解释了。: )


4.bug说明

遇到的Bug就是,除了采用newSingleThreadExecutor这个线程池外,其他3个线程池,都会遇到一个同样的Bug。文件在下载过程中,进度会在4/5左右中断,每次中断位置还基本不同。放置1,2分钟后,又会继续下载,直到完成。

推测是因为线程在下载过程中出现了异常然后结束,线程池创建新的线程来代替挂掉的线程需要时间。


5.OkHttp下载

OkHttp下载文件倒是很方便。直接上代码:

public class MainModel implements MainContract.MainBiz {
    private Platform platform;
    private Call call = null;

    public MainModel() {
        platform = Platform.get();
    }

    @Override
    public void onStart(String url, String fileName, onStartDownListener onStartDownListener) {
        downLoad(url, fileName, onStartDownListener);
    }

    @Override
    public void onStop(String fileName, onStartDownListener onStartDownListener) {
        if (call != null) {
            if (!call.isCanceled()) {
                call.cancel();
            }
            File f = FileUtils.getTargetFile(fileName);
            if (f != null && f.exists()) {
                f.delete();
                sendLoadProgressCallback(onStartDownListener,0,100);
                sendInfoCallback(onStartDownListener,"停止下载");
            }


        } else {
            sendLoadProgressCallback(onStartDownListener,0,100);
            sendInfoCallback(onStartDownListener,"call出现错误");
        }

    }

    private void downLoad(String url, final String fileName, final onStartDownListener onStartDownListener) {
        final OkHttpClient okHttpClient = new OkHttpClient();

        Request request = new Request.Builder().url(url).build();
        call = okHttpClient.newCall(request);
        call.enqueue(new Callback() {
            @Override
            public void onFailure(Call call, IOException e) {
                sendInfoCallback(onStartDownListener, e.getMessage());
            }

            @Override
            public void onResponse(Call call, Response response) throws IOException {
                sendInfoCallback(onStartDownListener, "已经开始下载");
                InputStream is = response.body().byteStream();
                long total = response.body().contentLength();
                int current = 0;
                byte[] by = new byte[1024 * 8];
                FileOutputStream fos = new FileOutputStream(FileUtils.getTargetFile(fileName));
                int len;
                while ((len = is.read(by)) != -1) {
                    fos.write(by, 0, len);
                    current += len;
                    sendLoadProgressCallback(onStartDownListener, current, total);
                }
                is.close();
                fos.close();
                sendInfoCallback(onStartDownListener, "下载完成");
            }
        });
    }

    private void sendLoadProgressCallback(final onStartDownListener onStartDownListener, final int current, final long total) {
        if (onStartDownListener == null) return;
        platform.execute(new Runnable() {
            @Override
            public void run() {
                onStartDownListener.onLoading(current, (int) total);
            }
        });
    }

    private void sendInfoCallback(final onStartDownListener onStartDownListener, final String message) {
        if (onStartDownListener == null) return;
        platform.execute(new Runnable() {
            @Override
            public void run() {
                onStartDownListener.onFailed(message);
            }
        });
    }
}


Platform是在张鸿洋大神封装的OkHttpUtils库中看的一个工具类,方便拿到Handler。直接回调就可以。

/*
 * Copyright (C) 2013 Square, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package utils;

import android.os.Build;
import android.os.Handler;
import android.os.Looper;

import java.util.concurrent.Executor;
import java.util.concurrent.Executors;

public class Platform
{
    private static final Platform PLATFORM = findPlatform();

    public static Platform get()
    {
        L.e(PLATFORM.getClass().toString());
        return PLATFORM;
    }

    private static Platform findPlatform()
    {
        try
        {
            Class.forName("android.os.Build");
            if (Build.VERSION.SDK_INT != 0)
            {
                return new Android();
            }
        } catch (ClassNotFoundException ignored)
        {
        }
        return new Platform();
    }

    public Executor defaultCallbackExecutor()
    {
        return Executors.newCachedThreadPool();
    }

    public void execute(Runnable runnable)
    {
        defaultCallbackExecutor().execute(runnable);
        
    }


    static class Android extends Platform
    {
        @Override
        public Executor defaultCallbackExecutor()
        {
            return new MainThreadExecutor();
        }

        static class MainThreadExecutor implements Executor
        {
            private final Handler handler = new Handler(Looper.getMainLooper());

            @Override
            public void execute(Runnable r)
            {
                handler.post(r);
            }
        }
    }
}


6.最后

多线程的学习暂时先告以段落。Android中,下载大文件,感觉还是OkHttp方便。OkHttp配合Handler也可以比较方便地进行更新进度

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,445评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,889评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,047评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,760评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,745评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,638评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,011评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,669评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,923评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,655评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,740评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,406评论 4 320
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,995评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,961评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,023评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,483评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,429评论 25 707
  • 前段时间遇到这样一个问题,有人问微信朋友圈的上传图片的功能怎么做才能让用户的等待时间较短,比如说一下上传9张图片,...
    加油码农阅读 1,182评论 0 2
  • 我游离在你的屋旁 时不时伫足仰望 心想那是不是你的倩影 倒映在你的帘,动乱了你的窗 我游离在你的屋旁 走不走又在心里掂量
    比勒罕阅读 164评论 0 1
  • 能遇见那个不见了的自己,接下来,将要进行的是一场旅行。 01 自动售票机取票,安检排队有秩序,除了进站检票口有点堵...
    青果方塘阅读 519评论 14 4
  • HopeThx阅读 161评论 0 0