码迷,mamicode.com
首页 > 移动开发 > 详细

android下文件下载

时间:2014-06-16 20:47:47      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:android   文件下载   

public static void downFile(final String url){
        new Thread(){
            public void run(){
            	FileOutputStream os=null;
            	try{
            		InputStream input=null;  
            		URLConnection httpUrlConnection= new URL(url).openConnection();
            		//int contentLength = httpUrlConnection.getContentLength();
                    input =httpUrlConnection.getInputStream();
        			File file = new File("C:\\Users\\Administrator\\Desktop\\Apknew.apk");
        			//如果目标文件已经存在,则删除。产生覆盖旧文件的效果
        			if(file.exists())
        			{
        			    file.delete();
        			}
        			os = new FileOutputStream(file);
        			byte[] buffer  = new byte[4*1024];  
        			// 读取到的数据长度   
        	         int len;
                    while((len=input.read(buffer)) != -1){  
                    	os.write(buffer,0,len);  //这里不能写成os.write(buffer)
                    }
                    os.flush();
                    os.close();  
        	    input.close();//这里一定不能忘记关闭输入流
        			//Log.v("cmd", "文件下载完毕,路径为:"+file.getAbsolutePath());
                    //update();
        		System.out.println("下载完毕");
                    
                }  catch (Exception e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }finally{
                	
                }
            }
        }.start();
    }

最近做项目用到文件下载,于是乎百度了N多下载代码,然后照抄,我这里是用来下载apk的,反复多次都是文件可以下载,但安装apk是出现解析包错误。经耐心检查发现两处错误

!1、input输入流忘记关闭了

2、os.write(buffer,0,len)写成了os.write(buffer)  百度出来的好多都是这样写的,而且Eclipse也不报错  究竟什么原因期待大神指点啊!

android下文件下载,布布扣,bubuko.com

android下文件下载

标签:android   文件下载   

原文地址:http://blog.csdn.net/shengfakun1234/article/details/31017107

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!