Throwable
|-- Error
|-- Exception
|-- RuntimeException
|-- ArithmeticException
|-- NullPointerException
|-- IndexOutOfBoundsException
|-- ...
|-- ...
|-- IOException
|-- EOFException
|-- FileNotFoundException
|-- ...
바이트 단위 스트림 vs 문자 단위 스트림
보조 스트림(Wrapper Stream)
BufferedInputStream/BufferedOutputStreamInputStreamReader/OutputStreamWriterDataInputStream/DataOutputStreamObjectInputStream/ObjectOutputStream분류
| 분류 | 바이트 단위 스트림 | 문자 단위 스트림 |
|---|---|---|
| 기반 스트림 | FileInputStream FileOutputStream | FileReader FileWriter |
| 보조 스트림 | BufferedInputStream BufferedOutputStream DataInputStream DataOutputStream PrintStream | BufferedReader BufferedWriter InputStreamReader OutputStreamWriter PrintWriter |