Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AsynchronousFileChannel.read()を使用して、テキスト ファイルを 1 行ずつ読みたいと思いますCompletionHandler。
AsynchronousFileChannel.read()
CompletionHandler
行ごとの読み取りを行うことができる唯一の機能は ですがBufferedReader.readLine()、それはリーダーのブロッキング性質と結びついています。
BufferedReader.readLine()
これに対する同様の解決策はありますか、またはファイル全体を読み取ってから BufferedReader でラップする必要がありますか?