I/O と NIO と NIO.2 自動クローズ(AutoCloseable) バイナリファイルを1バイトずつ読み込む FileInputStream (I/O) BufferedInputStream (I/O) newInputStream (NIO) バイナリファイルをすべて読み込む readAllBytes (NIO) テキストファイルを1文字ずつ読み込む InputStreamReader (I/O) FileReader (I/O) テキストファイルを1行ずつ読み込む BufferedReader (I/O) Scanner (I/O) newBufferedReader (NIO) lines (NIO) テキストファイルを全行まとめて読み込む readAllLines (NIO) バイナリファイルにバイト列を書き込む BufferedOutputStream (NIO) テ