多线程复制文件

package 多线程复制文件2;

import java.io.File;

import 多线程复制文件2.Copy.ThreadCopyFile;

public class Main {
	public static void main(String[] args) {
		// 获取文件的长度 把文件分成3块
		long filelength = new File(ThreadCopyFile.path).length();

		long size = filelength / 3;

		// 定义3个线程
		// for (int i = 0; i < 3; i++) {
		// new ThreadCopyFile(i * size, (i + 1) * size).start();
		// }

		ThreadCopyFile thread0 = new ThreadCopyFile(0, size);
		thread0.start();
		ThreadCopyFile thread1 = new ThreadCopyFile(size, 2 * size);
		thread1.start();
		ThreadCopyFile thread2 = new ThreadCopyFile(2 * size, filelength);
		thread2.start();
	}

}

 

package 多线程复制文件2;
import java.io.FileInputStream;
import java.io.InputStream;
import java.io.RandomAccessFile;

public class Copy {
	public static class ThreadCopyFile extends Thread {
		static String path = "C:\\Users\\CM\\Desktop\\a.avi";
		String topath = "C:\\Users\\CM\\Desktop\\a_附件.avi";
		private long from; // 复制起始位置 
		private long to; // 复制结束位置 

		public ThreadCopyFile(long from, long to) {
			this.from = from;
			this.to = to;
		}

		public void run() {
			try {
				InputStream in = new FileInputStream(path); //用字节流复制文件
				RandomAccessFile out = new RandomAccessFile(topath, "rw");
				in.skip(from); // 跳一定的字节后再开始读取
				out.seek(from); // 从一定字节后开始写入
				long sum = 0; // 统计读取了多少个字节数
				byte[] b = new byte[1024 * 1024];
				int len = 0;
				//读取的字节数必须有数量限制 限制小于 to 和from 的差
				while ((len = in.read(b)) != -1 && sum <= (to - from)) {
					out.write(b, 0, len);
					sum += len;
				}
				in.close();
				out.close();
				
				System.out.println(Thread.currentThread().getName() + " 复制完成");
			} catch (Exception e) {
				e.printStackTrace();
			} 
		}

		
	}

}

 

package 多线程复制文件;


import java.io.RandomAccessFile;
import java.nio.channels.FileChannel;
import java.nio.channels.FileLock;

public class CopyThread extends Thread{

	private String srcPath;
	private String destPath;
	private int start, end;

	public CopyThread(String srcPath, String destPath, int start, int end) {
		//要复制的源文件路径
		this.srcPath = srcPath;
		//复制到的文件路径
		this.destPath = destPath;
		//复制起始位置
		this.start = start;
		//复制结束位置
		this.end = end;
	}

	public void run() {
		try {
			RandomAccessFile in = new RandomAccessFile(srcPath, "r");
			RandomAccessFile out = new RandomAccessFile(destPath, "rw");
			
			// 将输入跳转到指定位置
			in.seek(start);
			// 从指定位置开始写
			out.seek(start);
			
			FileChannel inChannel = in.getChannel();
			FileChannel outChannel = out.getChannel();
			
			//锁住需要操作的区域
			FileLock lock = outChannel.lock(start,  (end-start), false);
	
//			inChannel.transferTo(position, count, outChannel);  或:
			outChannel.transferFrom(inChannel, start, (end-start));

			//释放锁
			lock.release();
			out.close();
			in.close();

		} catch (Exception e) {
			e.printStackTrace();
		}

	}

}

 

package 多线程复制文件;

import java.io.File;

public class Main {

	public static void main(String[] args) {
		//要复制的源文件路径
		String srcPath = "C:\\Users\\CM\\Desktop\\a.avi";
		//
		String destPath = "C:\\Users\\CM\\Desktop\\a_复件.avi";

		// 获得源文件长度
		File f = new File(srcPath);
		long len = f.length();

		int count = 3;// 需要的线程数
		//强制转换成int类型
		int oneNum = (int) (len / count);

		for (int i = 0; i < count - 1; i++) {
			CopyThread ct = new CopyThread(srcPath, destPath, oneNum * i,oneNum * (i + 1));
			ct.start();
		}
		CopyThread ct = new CopyThread(srcPath, destPath, oneNum * (count-1),(int)len);
		ct.start();
	}
}

 

 多线程复制文件的两个方法:

多线程复制文件2 和 多线程复制文件

1.多线程复制文件2是用字节流的方式

利用byte[] b = new byte[1024 * 1024]加快传输速度;

 

2.多线程复制文件用FileChannel,文件复制效率高;

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值