면접문제: 프로그램 작성, 파일 복사 기능 완성, 곧 souce.txt 파일 내용을 target으로 복사합니다.txt 파일로 갑니다.

1239 단어 target
코드:

package com.test;

import java.io.*;

public class Copyfile {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		String oldPath = "d:\\source.txt";
		String newPath = "d:\\target.txt";

		try {
			int bytesum = 0;
			int byteread = 0;
			File oldfile = new File(oldPath);
			if (oldfile.exists()) { //      
				InputStream inStream = new FileInputStream(oldPath); //      
				FileOutputStream fs = new FileOutputStream(newPath); 
				byte[] buffer = new byte[1444];
				int length;
				while ((byteread = inStream.read(buffer)) != -1) {
					bytesum += byteread; //         
					System.out.println("     :" + bytesum);
					fs.write(buffer, 0, byteread);
				}
				inStream.close();
				System.out.println("      !");
			} else {
				System.out.println(oldPath + "      ,      " + oldPath + "   !");
			}
		} catch (Exception e) {
			System.out.println("          ");
			e.printStackTrace();

		}

	}

}


좋은 웹페이지 즐겨찾기