package com.lee;

import java.io.FileOutputStream;
import java.io.FileInputStream;

public class Exam2 {

	public static void main(String[] args){
		//InputStream is = System.in;
		int data=0;
		FileOutputStream fos =null;//통로.관.파이프

		try{
			FileInputStream is = new FileInputStream("c:\\windows\\부채.bmp");
			fos=new FileOutputStream("c:\\test.bmp");
			/*String content = "Hello FileOutputStream";
			   byte[] cont =content.getBytes();//형변환
			 */			
			while((data = is.read()) != -1){
				fos.write(data);//데이터 보내라
			}
		}catch(Exception e){
		}
	}
}



'Java > 2012.04 강좌' 카테고리의 다른 글

16일차 입&출력4  (0) 2012.04.25
16일차 파일속성 보기  (0) 2012.04.25
16일차 입&출력2  (0) 2012.04.25
16일차 입&출력  (0) 2012.04.25
16일차 GUI -색깔 입히기 폰트 도형그리기  (0) 2012.04.25

+ Recent posts