文件名称:下载代码
文件大小:26KB
文件格式:DOC
更新时间:2014-08-18 17:34:14
下载代码下载代码下载代码
public void download3(String a,String d){ String s1 = "http://58.177.123.82:9080"+a; InputStream is = null; //定义一个输入流。 BufferedInputStream bis = null;//定义一个带缓冲的输入流 。 try{ URL url = new URL(s1);//创建一个URL对象。 HttpURLConnection conn = (HttpURLConnection) url.openConnection(); System.out.println(); conn.setDoInput(true); conn.connect(); is = conn.getInputStream();//打开到此 URL 的连接并返回一个用于从该连接读入的 InputStream。 bis = new BufferedInputStream(is); }catch(Exception e){ System.out.println(e.toString()); } //写到本地 BufferedOutputStream bos = null; //定义一个带缓冲的输出流。 File file = new File("/sdcard/"+d); System.out.println(file.exists()); if (file.exists()){ Toast.makeText(Reader5.this, "sorry! the file is exists", Toast.LENGTH_LONG).show(); } else{ try{ bos = new BufferedOutputStream(new FileOutputStream(file));; int num = -1; byte[] buffer = new byte[1024]; while (true) { num = bis.read(buffer); if (num == -1) { bos.flush(); break; } bos.write(buffer, 0, num); bos.flush(); } bos.close(); bis.close(); bos = null; bis = null; if( file.exists()){ Toast.makeText(Reader5.this, "download success!", Toast.LENGTH_LONG).show(); } }catch(Exception e){ } } }