摘要: 通过IO流读取本地文件,进行复制或者下载 FileInputStream FileOutputStream 缓冲读取文件区(这是核心) byte[] buffer=new byte[1024]; int len=0; while ((len=fis.read(buffer))!=-1) { fos. 阅读全文