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
- statement
- select
- 예외처리
- Join
- DB연동
- JDBC
- driver
- Transaction
- Annotaion
- 8bit
- array
- DB
- swing
- transient
- 자바
- Reader
- 상속
- where
- 난수
- 조회
- set
- InputStream
- Serializable
- 오라클
- 16bit
- stream
- Connection
- java
- Oracle
- 다이얼로그
Archives
- Today
- Total
목록buffered (1)
오버플로
[Java] IO Stream 활용 (1) - 파일 읽기
~전편에 이어서~ 오늘은 Stream을 활용하여 파일을 읽어보자! 1. 8bit Stream 활용 - 영어, 숫자는 1byte이므로 읽혀 지지만, 한글은 2byte 이므로 읽혀 지지 않음 - 방법) ① File에 연결할 수 있는 Stream을 생성 FileInputStream fis = new FileInputStream(new File(“파일경로”)); //FileNotFoundException ② 스트림에서 내용 읽기 > 스트림에 연결된 파일의 내용을 1byte씩 읽어 들임 > 읽어들인 데이터가 존재하지 않으면 -1이 나옴. > IOException 처리 필요 int value = 0; while ( (value = fis.read()) != -1 ) { // 파일 내용의 크기가 얼마나 될지 모르니 ..
Java
2021. 8. 30. 22:31