文件切割和文件合并

这里介绍的是将一个大的文件切割为若干个小的文件并存放在不同的目录下,文件目录要求足够多,且文件和目录不能重名。
文件切割的代码:
package cn.tedu.practice;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Properties;
import java.util.UUID;

/**
 * 文件切割放入不同的目录下,且目录不能同名,目录层级足够多,文件放入也不能重名
 * @author 11092
 *
 */
public class FileSplit {
	
	public static void main(String[] args) {
		
		//1,拿到需要切割的文件
		File file = new File("D:\\day23-am.avi");
		
		//2,拿到文件输入流
		FileInputStream fis = null;
		
		//3,创建一个properties文件来存放切割的文件的个数,以及每块对应的路径
		Properties prop = new Properties();
		
		//4,定义一个变量记录切割的文件个数
		int count = 0;
		
		try {
			
			 fis = new FileInputStream(file);
			 //字节数组 5M 大小 每次切割
			 byte[] buffer = new byte[1024*1024*5];
			 int len = -1;
			 while((len=fis.read(buffer))!=-1){
				 
				 //生成随机的32位二进制数
				 int random = UUID.randomUUID().hashCode();
				 
				 //再将随机的32位随机二进制数转为8位的16进制的字符串
				 String str = Integer.toHexString(random);
				 
				 //不足8位补0
				 int rest = 8 - str.length();
				 for (int i=0;i

文件合并的代码

package cn.tedu.practice;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.SequenceInputStream;
import java.util.Properties;
import java.util.Vector;

/**
 * 将文件合并
 * @author 11092
 *
 */
public class FileUnion {
	public static void main(String[] args) {
		
		Properties prop = new Properties();
		FileOutputStream fos = null;
		SequenceInputStream sis  = null;
		try {
			prop.load(new FileInputStream("day23-am.propertites"));
			int count = Integer.parseInt(prop.getProperty("count"));
			Vector vector = new Vector<>();
			for (int i = 0; i < count; i++) {
				vector.addElement(new FileInputStream(new File(prop.getProperty(""+i))));
			}
			//拿到合并流
			sis = new SequenceInputStream(vector.elements());
			//将文件写入指定的目录下的文件中
			fos = new FileOutputStream(new File("D:\\a.avi"));
			
			byte[] buffer = new byte[1024*1024];
			int len = -1;
			while((len=sis.read(buffer))!=-1){
				fos.write(buffer, 0, len);
			}
		} catch (IOException e) {
			e.printStackTrace();
		}finally{
			if(fos!=null){
				try {
					fos.close();
				} catch (IOException e) {
					e.printStackTrace();
				}finally{
					fos = null;
				}
			}
			if(sis!=null){
				try {
					sis.close();
				} catch (IOException e) {
					e.printStackTrace();
				}finally{
					sis = null;
				}
			}
		}
		
	}
}

你可能感兴趣的:(文件切割和文件合并)