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 | 31 |
Tags
- paint
- Java
- 메서드
- 오버로딩
- JSP
- 생성자
- 이클립스
- 에러페이지
- layout
- 안드로이드
- 국제화
- 클래스
- Graphic
- JavaScript
- 기본
- Spring
- oracle
- HTML
- Menu
- 예외처리
- 메소드
- struts2
- 전화걸기
- AWT
- 배열
- OGNL
- mybatis
- 어노테이션
- Eclips
- Android
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