Java實現InputStream的任意拷貝方式

Java InputStream的任意拷貝

有時候,當我們需要多次使用到同一個InputStream的時候如何實現InputStream的拷貝使用

我們可以把InputStream首先轉換成ByteArrayOutputStream.然後你就可以任意克隆你需要的InputStream瞭

代碼如下:

ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
byte[] buffer = new byte[1024];
int len;
while ((len = input.read(buffer)) > -1 ) {
    baos.write(buffer, 0, len);
}
baos.flush();
 
// 打開一個新的輸入流
InputStream is1 = new ByteArrayInputStream(baos.toByteArray()); 
InputStream is2 = new ByteArrayInputStream(baos.toByteArray());

但是如果你真的需要保持一個原始的輸入流去接收信息,你就需要捕獲輸入流的close()的方法進行相關的操作

復制InputStream流的代碼

private static InputStream cloneInputStream(InputStream input) {
    try {
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        byte[] buffer = new byte[1024];
        int len;
        while ((len = input.read(buffer)) > -1) {
            baos.write(buffer, 0, len);
        }
        baos.flush();
        return new ByteArrayInputStream(baos.toByteArray());
    } catch (IOException e) {
        e.printStackTrace();
        return null;
    }
}

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: