首页 > 代码库 > IO流--切割 合并文件
IO流--切割 合并文件
import java.io.*;import java.util.*;public class io { public static void main(String[] args)throws IOException { splitFile(); merge(); } //切割文件 public static void splitFile() throws IOException { FileInputStream fis = new FileInputStream("e:\\4.jpg"); FileOutputStream fos = null; byte[] buf = new byte[1024*1024]; int len = 0; int count = 1; while ((len=fis.read(buf))!=-1) { fos = new FileOutputStream("e:\\"+(count++)+".part"); fos.write(buf,0,len); fos.close(); } fis.close(); } //合并文件 public static void merge() throws IOException { Vector<FileInputStream> v = new Vector<FileInputStream>(); v.add(new FileInputStream("e:\\1.txt")); v.add(new FileInputStream("e:\\2.txt")); v.add(new FileInputStream("e:\\3.txt")); Enumeration<FileInputStream> en = v.elements(); SequenceInputStream sis = new SequenceInputStream(en); FileOutputStream fos = new FileOutputStream("e:\\4.txt"); byte[] buf = new byte[1024]; int len = 0; while ((len=sis.read(buf))!=-1) { fos.write(buf,0,len); } fos.close(); sis.close(); }}
IO流--切割 合并文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。