Java I / O-重用InputStream对象

无论如何,通过更改内容的内容来重用inputStream吗? (无新声明).
例如,我能够满足我的要求,但还不够
在下面的代码中,我使用了SequenceInputStream,每次我向该序列添加一个新的InputStream.
但是我想通过使用相同的inputStream来做同样的事情(我不在乎InputStream的哪个实现).
我考虑过mark()/ reset()API,但是我仍然需要更改要读取的内容.

避免创建新的InputStream的想法是由于性能问题

     //Input Streams
    List<InputStream> inputStreams = new ArrayList<InputStream>();
    try{
        //First InputStream
        byte[] input = new byte[]{24,8,102,97};
        inputStreams.add(new ByteArrayInputStream(input));

        Enumeration<InputStream> enu = Collections.enumeration(inputStreams);
        SequenceInputStream is = new SequenceInputStream(enu);

        byte [] out = new byte[input.length];
        is.read(out);

        for (byte b : out){
            System.out.println(b);//Will print 24,8,102,97
        }

        //Second InputStream
        input = new byte[]{ 4,66};
        inputStreams.add(new ByteArrayInputStream(input));
        out = new byte[input.length];
        is.read(out);

        for (byte b : out){
            System.out.println(b);//will print 4,66
        }
        is.close();
    }catch (Exception e){//
    }

解决方法:

不,您无法在输入流到达流的末尾后重新开始读取它,因为它是单向的,即仅在单方向上移动.

但是请参考以下链接,它们可能会有所帮助:

How to Cache InputStream for Multiple Use

Getting an InputStream to read more than once, regardless of markSupported()

上一篇:java-inputStream扩展InputStream的新类


下一篇:Java“文件”有效,但“ InputStream”无效