파일 복사

1.d:\자바 디 렉 터 리 에 있 는 모든 자바 파일 을 d:\jad 디 렉 터 리 에 복사 하고 원래 파일 의 확장 자 를 자바 에서 jd 로 변경 합 니 다.

package com.icss.test;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FilenameFilter;
import java.io.InputStream;
import java.io.OutputStream;

public class Jad2Java {
       
	public static void main(String[] args) throws Exception {
		File srcDir = new File("D:\\jaa");
		if (!(srcDir.exists() && srcDir.isDirectory()))
			throw new Exception("     ");
//listFiles      FilenameFilter  ,  FilenameFilter      
//     ,         FileFilter  ,           。
		File[] files = srcDir.listFiles(new FilenameFilter() {

			public boolean accept(File dir, String name) {
				return name.endsWith(".java");
			}

		});

		System.out.println(files.length);
		File destDir = new File("D:\\jad");
		if (!destDir.exists())
			destDir.mkdir();
		for (File f : files) {
			FileInputStream fis = new FileInputStream(f);
//			            
			String destFileName = f.getName().replaceAll("\\.java$", ".jad"); 
			FileOutputStream fos = new FileOutputStream(new File(destDir,
					destFileName));
			copy(fis, fos);
			fis.close();
			fos.close();
		}
	}

	private static void copy(InputStream ips, OutputStream ops)
			throws Exception {
		int len = 0;
		byte[] buf = new byte[1024];
		while ((len = ips.read(buf)) != -1) {  //  ips     buf       len
			System.out.println(len);
			ops.write(buf, 0, len);
		}

	}
}





좋은 웹페이지 즐겨찾기