码迷,mamicode.com
首页 > 其他好文 > 详细

第四篇学习笔记

时间:2016-04-08 21:33:55      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

import java.io.*;


public class CopyFile {

	/**
	 * @param args
	 */
	public static void copy(File a,File b){
		try {
			FileInputStream fis = new FileInputStream("a.mp3");
			FileOutputStream fos = new FileOutputStream("temp.mp3");
			byte[] buf = new byte[330217];
			int length;
			int read = fis.read();
			while((length = fis.read(buf))!=-1){
				fos.write(buf, 0, length);
			//
			}
			fis.close();
			fos.close();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
	 public static void main(String[] args) {
		// TODO Auto-generated method stub
		File a = new File("");
		File b = new File("");
		long start,end;
		start = System.currentTimeMillis();
		copy(a,b);
		end = System.currentTimeMillis();
		System.out.println("用时:" + (end - start) + "ms");
	//
	}
}

  技术分享

第四篇学习笔记

标签:

原文地址:http://www.cnblogs.com/lvbloges/p/5369927.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!