1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import java.io.*; public class FileCopy { public static void main(String[] args) throws IOException { File input = new File("/Users/ghdrl95/Documents/input.txt"); File output = new File("/Users/ghdrl95/Documents/output.txt"); FileInputStream in = new FileInputStream(input); FileOutputStream out = new FileOutputStream(output); int cTemp; while((cTemp = in.read()) != -1){ out.write(cTemp); } } } | cs |
'프로그래밍 > Java, Android' 카테고리의 다른 글
(Android) LG 360 cam SDK 사용하기 (1) (0) | 2016.07.10 |
---|---|
(Java) UDP 통신 (0) | 2016.07.10 |
(Java) basic 경마, 기능추가된 경마 프로젝트 (0) | 2016.07.10 |
(Java) 제네릭 예제 (0) | 2016.07.10 |
(Java) 쓰레드를 이용한 경마 + 배팅 프로그램 (0) | 2016.07.10 |