android - 用okhttp3做图片下载,图片下载成功,但本地图片打开时,提示无法打开
PHPz
PHPz 2017-04-18 09:14:35
0
1
1470

主要代码如下,请大神指点:

public File saveFile(Response response, final int id) throws IOException
    {

        InputStream is = null;
        byte[] buf = new byte[2048];
        int len = 0;
        FileOutputStream fos = null;
        try
        {
            is = response.body().byteStream();
            final long total = response.body().contentLength();

            long sum = 0;

            File dir = new File(destFileDir);
            if (!dir.exists())
            {
                dir.mkdirs();
            }
            File file = new File(dir, destFileName);
            fos = new FileOutputStream(file);
            while ((len = is.read(buf)) != -1)
            {
                sum += len;
                fos.write(buf, 0, len);
                final long finalSum = sum;
                OkHttpUtils.getInstance().getDelivery().execute(new Runnable()
                {
                    @Override
                    public void run()
                    {

                        inProgress(finalSum * 1.0f / total,total,id);
                    }
                });
            }
            fos.flush();

            return file;

        }finally {

            try {
                response.body().close();
                if (is != null) is.close();
            } catch (IOException e) {}

            try {
                if (fos != null) fos.close();
            } catch (IOException e) {}

        }

    }
PHPz
PHPz

学习是最好的投资!

全部回覆(1)
左手右手慢动作

保存沒加後綴名?

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板