Android下载文件(1)

  • service下载文件,加入标签:

<service android:name=".MyService"></service>

添加相关权限:

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

  • 代码如下:

    public class MainActivity extends Activity {
        private Button button;

    @Override
        protected void onCreate(Bundle savedInstanceState) {
            // TODO Auto-generated method stub
            super.onCreate(savedInstanceState);
            setContentView(R.layout.mainactivity);
            button = (Button) findViewById(R.id.button1);
            button.setOnClickListener(new OnClickListener() {

    @Override
                public void onClick(View arg0) {
                    // TODO Auto-generated method stub
                    Intent intent = new Intent(MainActivity.this,MyService.class);
                    startService(intent);
                }
            });
        }
    }

    public class MyService extends Service {
        private final String DOWNPATH = "http://www.baidu.com/img/bdlogo.png";//下载链接

    @Override
        public void onCreate() {
            // TODO Auto-generated method stub
            super.onCreate();
        }

    @Override
        public int onStartCommand(Intent intent, int flags, int startId) {
            // TODO Auto-generated method stub
            // 不能直接使用Http协议使用网络,service在UI线程当中,需要创建线程,与主线程分离
            final Handler handler = new Handler() {
                @Override
                public void handleMessage(Message msg) {
                    // TODO Auto-generated method stub
                    super.handleMessage(msg);
                    if (msg.what == 1) {
                        stopSelf();
                        Toast.makeText(getApplicationContext(), "文件下载完毕", 1).show();
                    }
                }
            };

    Thread thread = new Thread(new Runnable() {
                @Override
                public void run() {
                    // TODO Auto-generated method stub
                    HttpClient httpClient = new DefaultHttpClient();
                    HttpPost httpPost = new HttpPost(DOWNPATH);
                    HttpResponse httpResponse = null;
                    // 获得SD卡的目录
                    File file = Environment.getExternalStorageDirectory();
                    FileOutputStream outStream = null;
                    try {
                        httpResponse = httpClient.execute(httpPost);
                        if (httpResponse.getStatusLine().getStatusCode() == 200) {
                            byte[] result = EntityUtils.toByteArray(httpResponse
                                    .getEntity());
                            // 判断SDK卡是否挂载,并且可以存储数据
                            if (Environment.getExternalStorageState().equals(
                                    Environment.MEDIA_MOUNTED)) {
                                File new_file = new File(file, "bdlogo.png");
                                outStream = new FileOutputStream(new_file);
                                outStream.write(result, 0, result.length);
                                Message message = Message.obtain();
                                message.what = 1;
                                handler.sendMessage(message);
                                // 关闭service

    }
                        }
                    } catch (Exception e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    } finally {
                        try {
                            outStream.close();
                            httpClient.getConnectionManager().shutdown();
                        } catch (IOException e) {
                            // TODO Auto-generated catch block
                            e.printStackTrace();
                        }

    }
                }
            });
            thread.start();
            return super.onStartCommand(intent, flags, startId);
        }

    @Override
        public IBinder onBind(Intent arg0) {
            // TODO Auto-generated method stub
            return null;
        }

    }

时间: 2024-11-06 12:02:44

Android下载文件(1)的相关文章

Android下载文件常见错误解决方法

最近在学习Mars老师的Android开发课程,仿照http://www.cnblogs.com/Laupaul/archive/2012/02/12/2348293.html的代码来写应用,结果中间出了各种各样的问题,在这里总结一下: 1. java.lang.NullPointerException报错,android.os.NetworkOnMainThreadException异常 原因:urlCon.getInputStream()执行的时候出错导致,得不到InputStream.这个

android下载文件,文件包括视频以及各种文件

在做项目中要进行文件的下载以及调用系统软件打开,文件是服务端,以下是一些代码片段: 运用progressbar和http协议下载文件: 如果没有这个文件的就先进行创建并下载,如果有的话就打开: private void playMeida() { file2 = new File(savePAth + "/" + filename); if (!file2.exists()) { new Thread() { public void run() { try { down_file(pa

基于Android 下载文件时,更新UI简单帮助类

由于在项目开发时,有这样的简单需求,问谷歌,网络上也有好多Utils工具类,但是比较冗余.自己就简单的写了一个简单帮助类. /** * 下载文件,更新UI简单帮助类 * * @author jarlen * */ public class DownLoadHelper { private static final int DOWN_BEGIN = 0; private static final int DOWN_UPDATA = 1; private static final int DOWN_

Android学习笔记19:带有通知栏的进度条的Android下载文件

1.首先,android的文件下载需要以下几个权限: <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.WR

Android下载文件提示文件不存在。。。 java.io.FileNotFoundException

遇到这个错误java.io.FileNotFoundException,事实上文件是存在的,把地址复制到手机浏览器都能够直接下载的,但为嘛不能下载呢. Error in downloadBitmap - http://neirong.funshion.com/download/agc/fcms/疯狂坦克大战/疯狂坦克大战.png : java.io.FileNotFoundException: http://neirong.funshion.com/download/agc/fcms/疯狂坦克大

Android下载文件到SD卡

HttpURLConnection 上传方式: 尝试理解这两种流的区别: InputStreamReader 的读取方式: 1 //创建一个URL对象 2 URL url = new URL(urlString); 3 4 //创建一个HttpURLConnection 5 HttpURLConnetion urlConn = (HttpURLConnection)url.openConnecton(); 6 7 //读取数据 8 BufferReader buffer = new Buffer

Android下载文件的进度条提示(网络通信部分示例)

URL url = newURL(http://somewhere.com/some/webhosted/file); HttpURLConnectionurlConnection = (HttpURLConnection) url.openConnection(); urlConnection.setRequestMethod("GET"); urlConnection.setDoOutput(true); urlConnection.connect(); File SDCardRo

腾讯对象存储服务COS加密签名上传文件与下载文件的剖析,福利提供给所有使用Android的小伙伴们!

在做一些用户需求的时候,公司往往需要工程师采集到更多有用的关于用户的个人信息,然后对用户群进行分析,今天我不是来分析这些的,今天我主要是说 腾讯推出的款云产品,那就是对象存储服务COS,这个产品面向所有开发者,新用户都有免费享有10G的使用权,10G可能对于做方案的工程师来说可能是微不 足道的,比如后视镜和车载方案,会常常需要用到视频的存储与云分享,当然这里不是只本地存储哦,我指的是用户在使用方案商的方案的时候,比如他开车 的时候录了一段视频需要分享到某个域,共享给大家看,比如微信,这时候他肯定

android开发步步为营之67:使用android开源项目android-async-http异步下载文件

android-async-http项目地址 https://github.com/loopj/android-async-http,android-async-http顾名思义是异步的http请求,不过它也支持同步请求的,本文主要使用了android-async-http做异步请求下载文件.每当app需要更新新版本的时候,就需要用到下载功能的,经研究android-async-http这个第三方开源项目还是挺好用的,这里介绍给大家.     1.下载类DownloadManager.java