android中文件下载

本文介绍了一个简单的Android应用程序示例,用于从网络下载文件并将其保存到SD卡中。示例代码展示了如何使用HttpURLConnection获取远程文件,并通过权限配置确保应用能够访问互联网及外部存储。
摘要由CSDN通过智能技术生成

1、在android中我门经常会用到下载网络上的某个文件。那怎么实现呢? 如下

    public void  DownMP3(){
            String urlStr="http://192.168.18.204:8210/jxms/wechat/fileDownload?fileSign=2016-05-09_2045d8a1-d520-485d-afc0-ccf7b0b2f2f3&msgType=video"; 
         
             OutputStream output=null; 
             try { 
                 /*
                  * 通过URL取得HttpURLConnection
                  * 要网络连接成功,需在AndroidMainfest.xml中进行权限配置
                  * <uses-permission android:name="android.permission.INTERNET" />
                  */ 
                 URL url=new URL(urlStr); 
                 HttpURLConnection conn=(HttpURLConnection)url.openConnection(); 
                 //取得inputStream,并将流中的信息写入SDCard 
                  
                 /*
                  * 写前准备
                  * 1.在AndroidMainfest.xml中进行权限配置
                  * <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
                  * 取得写入SDCard的权限
                  * 2.取得SDCard的路径: Environment.getExternalStorageDirectory()
                  * 3.检查要保存的文件上是否已经存在
                  * 4.不存在,新建文件夹,新建文件
                  * 5.将input流中的信息写入SDCard
                  * 6.关闭流
                  */ 
             
                  
                 File file=new File(pathName); 
                 InputStream input=conn.getInputStream(); 
                 if(file.exists()){ 
                  
                     return; 
                 }else{ 
                     String dir=SDCard+"/"+path; 
                     new File(dir).mkdir();//新建文件夹 
                  
                   
                     file.createNewFile();//新建文件 
                     output=new FileOutputStream(file); 
                     //读取大文件 
                     byte[] buffer=new byte[4*1024]; 
                     while(input.read(buffer)!=-1){ 
                         output.write(buffer); 
                     } 
                     output.flush(); 
                 } 
             } catch (MalformedURLException e) { 
                 e.printStackTrace(); 
             } catch (IOException e) { 
                 e.printStackTrace(); 
             }finally{ 
                 try { 
                  if(output!=null){
                      output.close(); 
                  }
                
                     } catch (IOException e) {  
                         e.printStackTrace(); 
                     } 
             } 
         } 

文件下载的类封装好了,剩下的就是 调用了。。。



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值