首页 > 系统 > Android > 正文

Android网络编程核心技术(三)URL资源处理

2019-11-06 10:02:58
字体:
来源:转载
供稿:网友

        通常情况而言,URL可以由协议名、主机、端口和资源名组成,Android通过URl获取资源一般可以通过URLConnection和HTTPURLConnetion两种方式。

       1.通过多线程实现URL文件下载

        上一篇文章提过使用openStream()来获取URL资源的InputStream,下面的例子通过该方法远程读取资源。

public class DownUtil{    // 定义下载资源的路径    PRivate String path;    // 指定所下载的文件的保存位置    private String targetFile;    // 定义需要使用多少线程下载资源    private int threadNum;    // 定义下载的线程对象    private DownThread[] threads;    // 定义下载的文件的总大小    private int fileSize;    public DownUtil(String path, String targetFile, int threadNum)    {        this.path = path;        this.threadNum = threadNum;        // 初始化threads数组        threads = new DownThread[threadNum];        this.targetFile = targetFile;    }    public void download() throws Exception    {        URL url = new URL(path);        HttpURLConnection conn = (HttpURLConnection) url.openConnection();        conn.setConnectTimeout(5 * 1000);        conn.setRequestMethod("GET");        // 得到文件大小        fileSize = conn.getContentLength();        conn.disconnect();        //每个线程下载资源的大小        int currentPartSize = fileSize / threadNum + 1;//这里不必一定要加1,不加1也可以        //创建一个可读写的本地空文件        RandomaccessFile file = new RandomAccessFile(targetFile, "rw");        // 设置本地文件的大小        file.setLength(fileSize);        file.close();        for (int i = 0; i < threadNum; i++)        {            // 计算每条线程的下载的开始位置            int startPos = i * currentPartSize;            // 每个线程使用一个RandomAccessFile进行下载            RandomAccessFile currentPart = new RandomAccessFile(targetFile, "rw");            // 定位该线程的下载位置            currentPart.seek(startPos);            // 创建下载线程            threads[i] = new DownThread(startPos, currentPartSize, currentPart);            // 启动下载线程            threads[i].start();        }    }    // 获取下载的完成百分比    public double getCompleteRate()    {        // 统计多条线程已经下载的总大小        int sumSize = 0;        for (int i = 0; i < threadNum; i++)        {            sumSize += threads[i].length;        }        // 返回已经完成的百分比        return sumSize * 1.0 / fileSize;    }    private class DownThread extends Thread    {        // 当前线程的下载位置        private int startPos;        // 定义当前线程负责下载的文件大小        private int currentPartSize;        // 当前线程需要下载的文件块        private RandomAccessFile currentPart;        // 定义已经该线程已下载的字节数        public int length;        public DownThread(int startPos, int currentPartSize,RandomAccessFile currentPart)        {            this.startPos = startPos;            this.currentPartSize = currentPartSize;            this.currentPart = currentPart;        }        @Override        public void run()        {            try            {                URL url = new URL(path);                HttpURLConnection conn = (HttpURLConnection)url.openConnection();                conn.setConnectTimeout(5 * 1000);                conn.setRequestMethod("GET");                InputStream inStream = conn.getInputStream();                // 跳过startPos个字节,表明该线程只下载自己负责哪部分文件。                inStream.skip(this.startPos);                byte[] buffer = new byte[1024];                int hasRead = 0;                // 读取网络数据,并写入本地文件                while (length < currentPartSize                        && (hasRead = inStream.read(buffer)) != -1)                {                    currentPart.write(buffer, 0, hasRead);                    // 累计该线程下载的总大小                    length += hasRead;                }                currentPart.close();                inStream.close();            }            catch (Exception e)            {                e.printStackTrace();            }        }    }}

public class test {    public static void main(String args[]) throws Exception {        final DownUtil downUtil = new DownUtil("http://down.360safe.com/se/360se_setup.exe", "360se_setup.exe", 3);        downUtil.download();    }}

上述代码中按如下步骤实现多线程下载文件:

         (1)创建URL对象

         (2)获取指定URL对象所指向资源的大小

         (3)计算每个线程下载资源块的大小并在本地磁盘上创建一个与网络资源大小相同的空文件

         (4)计算每条线程应该下载资源的那个部分(从哪个字节开始)

         (5)依次创建、启动每条线程下载指定部分

           如果要实现断点下载,需要增加一个记录了每个线程下载到哪个字节的配置文件即可,当网络断开继续下载时,每个线程根据配置文件里记录的位置继续下载即可。

          下载图片可借鉴下面的代码:

          URLConnection conn = url.openConnection();

          conn.connect();

          BitMap bm = BitMapFactory.decodeStream(conn.getInputStream());

          imageview.setImageBitMap(bm);


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表