複製輸入流以進行多次讀取
由於資料消耗的順序性質,讀取輸入流兩次會帶來挑戰。但是,透過利用 Apache Commons IO 庫,您可以將流的內容複製到可重複使用來源。
使用 ByteArrayOutputStream 和 ByteArrayInputStream 的解決方案:
多次讀取流:
// Option 1: Iteratively create `ByteArrayInputStream` objects while (needToReadAgain) { ByteArrayInputStream bais = new ByteArrayInputStream(bytes); yourReadMethodHere(bais); } // Option 2: Reset the same `ByteArrayInputStream` repeatedly ByteArrayInputStream bais = new ByteArrayInputStream(bytes); while (needToReadAgain) { bais.reset(); yourReadMethodHere(bais); }
注意:這種方法適合相對較小的資料流。對於大型或無限流,請考慮流式方法以避免記憶體耗盡。
以上是如何在Java中多次讀取InputStream?的詳細內容。更多資訊請關注PHP中文網其他相關文章!