android 4.4 下载文件

标签: android 下载 文件 | 发表时间:2014-01-30 07:53 | 作者:yuexin2
出处:http://blog.csdn.net

在android4.0以后,下载程序如果在主线程中出现的话,会报android.os.NetworkOnMainThreadException 错误。这可能是因为,在android的4.0以后使编码更加规范。在主线程中下载可能会导致线程的假死状态。造成用户的体验度不高。这里我用android4.4编写了一个下载的demo。

下载文件的步骤:
1.创建一个HttpURLConnection对象
HttpURLConnection urlConn = (HttpURLConnection )url.openConnection();
2.获得一个InputStream对象
urlConn.getInputStream()
3.访问网络权限
android.permission.INTERNET

访问sd卡步骤
1.得到当前设备SD卡的目录
Environment.getExternalStorageDIrectory()
2.访问SD卡的权限
android.permission.WRITE_EXTERNAL_STORAGE

下面贴出代码,方便大家浏览。

首先是AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.yx.download"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-permission android:name="android.permission.INTERNET"/><!-- 设置访问internet权限 -->
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>  <!-- 设置写入sd卡权限 -->
    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.yx.download.DownLoadActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>
其次是DownLoadActivity文件

package com.yx.download;

import com.yx.utils.HttpDownLoad;

import android.os.Bundle;
import android.os.Handler;
import android.os.HandlerThread;
import android.os.Message;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class DownLoadActivity extends Activity {

    private Button downLoadMP3;
    private Button downLoadTXT;
    private HandlerThread thread;
    Handler handler = new Handler();
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        downLoadMP3 = (Button) findViewById(R.id.downLoadMP3);
        downLoadTXT = (Button) findViewById(R.id.downLoadTXT);
        downLoadMP3.setOnClickListener(new downLoadMP3Listener());
        downLoadTXT.setOnClickListener(new downLoadTXTListener());
        
        //生成一个HandlerThread对象,实现使用looper来处理消息队列的功能,其实就是启用另一个线程,使下载不在主线程之中
        thread = new HandlerThread("handler_thread");
        thread.start();
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    class downLoadMP3Listener implements OnClickListener{
        @Override
        public void onClick(View arg0) {
            handler=new Handler(thread.getLooper());
            handler.post(runMP3);//将执行下载MP3的线程压入栈内
        }
        
    }
    
    class downLoadTXTListener implements OnClickListener{
        @Override
        public void onClick(View arg0) {
            handler=new Handler(thread.getLooper());
            handler.post(runTXT);
        }
        
    }
    
    //下载MP3线程
    Runnable runMP3 = new Runnable() {
        @Override
        public void run() {
            HttpDownLoad httpDownLoad = new HttpDownLoad();
            int result = httpDownLoad.downFile("http://192.168.0.103:8080/testAndroidDownLoad/aa.mp3", "voa/", "ass.mp3");
            System.out.println(result);
        }
    };
    //下载文本线程
    Runnable runTXT = new Runnable() {
    @Override
    public void run() {
        HttpDownLoad httpDownLoad = new HttpDownLoad();
        String str=httpDownLoad.downLoad("http://192.168.0.103:8080/testAndroidDownLoad/aa.lrc");
        System.out.println(str);
    }
    };
}

为了方便使用,有如下两个帮助类,分别为HttpDownLoad和FileUtils

======HttpDownLoad.java========

package com.yx.utils;

import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;

public class HttpDownLoad {

    private URL url=null;
    /**
     * 只可以下载文本文件,下载到内存中
     * @param urlStr 文件网络路径
     * @return
     */
    public String downLoad(String urlStr){
        StringBuffer sb = new StringBuffer();
        String line=null;
        BufferedReader buffer = null;
        try {
            //创建URL对象
            url = new URL(urlStr);
            //创建Http连接
            HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();
            //使用IO流读取数据
            buffer = new BufferedReader(new InputStreamReader(urlConn.getInputStream()));
            while((line = buffer.readLine())!=null){
                sb.append(line);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }finally{
            
            try {
                buffer.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return sb.toString();
    }
    
    /**
     * 下载到sd卡中
     * @param urlStr 下载的地址
     * @param path 存放路径
     * @param fileName 存放的文件名
     * @return -1:下载文件出错;0:文件下载成功;1:文件已经存在
     */
    public int downFile(String urlStr,String path,String fileName){
        InputStream inputStream = null;
        FileUtils fileUtils = new FileUtils();
        if(fileUtils.isFileExist(path+fileName)){
            System.out.println("已经有文件了");
            return 1;
        }else{
            try {
                System.out.println("还没文件");
                inputStream = getInputStreamByUrl(urlStr);
                File file = fileUtils.write2SDFromInput(path, fileName, inputStream);
                if(null==file){
                    return -1;
                }
            } catch (Exception e) {
                e.printStackTrace();
                return -1;
            }finally{
                try {
                    inputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        return 0;
        
    }
    
    /**
     * 根据url获得InputStream
     * @param urlStr
     * @return
     * @throws IOException
     */
    public InputStream getInputStreamByUrl(String urlStr) throws IOException{
        url = new URL(urlStr);
        HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();
        InputStream inputStream = urlConn.getInputStream();
        return inputStream;
    }
}
=========FileUtils.java=======
package com.yx.utils;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import android.os.Environment;


public class FileUtils {

    private String SDPATH;

    public String getSDPATH() {
        return SDPATH;
    }
    
    public FileUtils(){
        //得到SD卡的路径
        SDPATH = Environment.getExternalStorageDirectory()+"/";
    }
    /**
     * 在SD卡上创建文件
     * @param fileName 文件名
     * @return
     * @throws IOException
     */
    public File createSDFile(String fileName) throws IOException{
        File file = new File(SDPATH+fileName);
        file.createNewFile();
        return file;
    }
    
    /**
     * 在SD卡上创建目录
     * @param dirName
     * @return
     */
    public File createSDDir(String dirName){
        File dir = new File(SDPATH+dirName);
        dir.mkdir();
        return dir;
    }
    /**
     * 判断文件是否存在
     * @param fileName
     * @return
     */
    public boolean isFileExist(String fileName){
        File file = new File(SDPATH+fileName);
        return file.exists();
    }
    
    /**
     * 向sd卡中写入数据
     * @param path 路径
     * @param fileName 文件名
     * @param input InputStream数据流
     * @return
     */
    public File write2SDFromInput(String path,String fileName,InputStream input){
        File file = null;
        OutputStream out = null;
        try {
            createSDDir(path);
            file = createSDFile(path+fileName);
            out = new FileOutputStream(file);
            byte buffer[] = new  byte[4*1024];
            while(input.read(buffer)!=-1){
                out.write(buffer);
            }
            out.flush();
        } catch (IOException e) {
            e.printStackTrace();
        }finally{
            try {
                out.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return file;
    }
}



作者:yuexin2 发表于2014-1-29 23:53:32 原文链接
阅读:0 评论:0 查看评论

相关 [android 下载 文件] 推荐:

android 4.4 下载文件

- - CSDN博客推荐文章
在android4.0以后,下载程序如果在主线程中出现的话,会报android.os.NetworkOnMainThreadException 错误. 这可能是因为,在android的4.0以后使编码更加规范. 在主线程中下载可能会导致线程的假死状态. 这里我用android4.4编写了一个下载的demo.

Android下载并打开pdf文件

- - ITeye博客
下载并打开pdf文件,前提是手机上有可打开pdf文件的应用. System.out.println("我点击了按钮");. System.out.println("下载完成");. System.out.println("打开");. System.out.println("打开失败");. 已有 0 人发表留言,猛击->> 这里<<-参与讨论.

教你用电脑从 Google Play 下载 Android 程序 apk 文件

- - 小众软件 - Appinn
APK Downloader 是一款帮助你用电脑从 Google Play (原 Android Market ) 下载 Android 应用程序 apk 文件的 Chrome 扩展. Ivan 同学在 Group 讨论组 里推荐了一个用电脑从 Google Play 里下载 Android 程序的方法,可以直接下载到 apk 文件.

android文件下载及自定义通知显示下载进度

- - CSDN博客推荐文章
这几天在实现一个APK版本更新的功能,发现涉及的东西比较繁杂. 本着一劳永逸的想法将相关的内容写成了相对比较独立的类供以后参考同时也与大家共享,欢迎大家批评指正. (1)文件下载:设计自定义类,只需传入一个Handler、下载地址URLStr及保存路径及可实现下载的功能. handler主要用于线程间通信,跟新通知中的进度条.

Android 4.0 SDK 已可下载

- Elic - cnBeta.COM
Google今日在香港发布了Android 4.0系统,并面向程序员发布了开发工具包,现已可以在Android开发中心下载. 新的SDK支持移动数据控制、面部识别、高分辨率图像、增强共享等功能,详细信息请参看开发者中心页面:.

python 下载文件

- Eric - python相关的python 教程和python 下载你可以在老王python里寻觅
之前给大家分享的python 多线程抓取网页,我觉的大家看了以后,应该会对python 抓取网页有个很好的认识,不过这个只能用python 来抓取到网页的源代码,如果你想用做python 下载文件的话,上面的可能就不适合你了,最近我在用python 做文件下载的时候就遇到这个问题了,不过最终得以解决,为了让大家以后碰过这个问题有更好的解决办法,我把代码发出来:.

springmvc文件上传下载

- - ITeye博客
在网上搜索的代码 参考整理了一份. commons-fileupload.jar与commons-io-1.4.jar二个文件. 1、表单属性为: enctype="multipart/form-data". 2、springmvc配置.

android开发书籍emule下载链接

- jing77 - biAji HeRe
本来放在Verycd的,出于避免某些难以预料的问题的考虑(就像Verycd的诸多电影资源一样),我不得不觉得应该将Verycd作为一个备选方案. ed2k: [android.开发书籍].Beginning.Android.2.(Apress,.2010,.1430226293).pdf. ed2k: [android.开发书籍].Hello.Android.3rd.Edition.pdf.

CyanogenMod 7.0(Android 2.3.3)开放下载啰!

- allengaller - Engadget 中国版
客制化 Android OS 玩家又有新玩具了. Cyanogen 日前正式丢出 CyanogenMod 第七版,也就是以 Gingerbread Android 2.3.3 为基础的版本,这次除了一票手机外,还多支持了 B&N 家的电子阅读器 Nook Color 以及 Viewsonic G 等平板产品.

Android多任务多线程下载

- - 移动开发 - ITeye博客
关注微信号:javalearns   随时随地学Java. 打算实现一个下载功能,当然理想的功能要支持多任务下载、多线程下载、断点续传的功能,我想一步一步来,首先困难摆在了多任务这里. 开始的思路是在一个Service中启动下载的流操作,然后通过Service中声明一个Activity中的Handler更新UI(比如进度条.