摘要: //将filepath写入outpath File file=new File(filepath); InputStream inputstream=new FileInputStream(file); FileOutputStream outstream = new FileOutputStream(outpath); int iBytesRead = 0; byte[] buffer = n... 阅读全文
posted @ 2016-06-02 11:49 ゞSmile丶 阅读(97) 评论(0) 推荐(0) 编辑