Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 어노테이션
- 이클립스
- JavaScript
- 메소드
- Java
- Android
- 에러페이지
- Spring
- struts2
- Menu
- OGNL
- layout
- 오버로딩
- oracle
- 배열
- 생성자
- JSP
- 클래스
- AWT
- mybatis
- 안드로이드
- 예외처리
- paint
- Eclips
- HTML
- 국제화
- 전화걸기
- Graphic
- 메서드
- 기본
Archives
- Today
- Total
목록생성및 (1)
note
입출력 파일 생성및 파일 읽기
package com.output; // 입출력으로 파일생성 및 파일 읽기 import java.io.IOException; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; public class FileOuputstreamEx { public static void main(String[] args) { FileOutputStream fos = null; FileInputStream fin = null; try{ //파일 생성 fos = new FileOutputStream("c:\\fileout.txt"); //fos = new FileOutputStream("c:\\..
자바/입출력
2012. 1. 2. 12:21