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
- Parent
- Excel
- toFixed()
- is_check
- removeClass
- calc.minus
- selectoptions
- Git
- excel중복체크
- FileZilla설치
- 증가값
- hide
- Math.ceil()
- 파일질라설치오류
- FileZilla다운로드
- 파일질라설치
- selectedIndex
- Math.round()
- Math.floor()
- slideUp
- ctrl+/
- 1521
- calc.plus
- 소스트리인증실패
- index %
- 파일질라다운로드
- addClass
- push오류
- 주석이 먹히지 않을 때
- SUB함수
Archives
- Today
- Total
잡동사니에도 사랑을
[21.08.26] ByteStream 본문
728x90
반응형
package io;
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.IOException;
public class ByteStream {
public static void main(String[] args) throws IOException {
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("data.txt"));
int data;
while ((data = bis.read()) != -1) { // -1이 아닐 때까지 while문을 돌려라
System.out.print((char) data); // 형변환
} // while
bis.close();
}
}
// 바이트 단위는 파일 안에 있는 내용을 한글자씩 읽어오는 것
// 더이상 읽을 문자가 없으면 null이 아닌 -1을 가져온다
728x90
반응형
'JAVA_SE > 11_io' 카테고리의 다른 글
[21.08.25] ObjectWriteMain, ObjectReadMain, PersonDTO (0) | 2021.08.29 |
---|---|
[21.08.27] Interface 이용한 성적관리 프로그램 만들기1 (Score, ScoreDTO, ScoreImpl, ScoreMain, ScoreForm) (0) | 2021.08.29 |
[21.08.25] Timer(스톱워치) 만들기 (0) | 2021.08.26 |
[21.08.25] DataStream - type에 따라 파일에 데이터 넣고 꺼내는 방법 (0) | 2021.08.25 |
[21.08.25] 메모장 만들기(MenuPane, TryNotePad) (0) | 2021.08.25 |