Java I / O - 重用InputStream对象

时间:2016-04-14 13:02:14

标签: java 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){//
    }

2 个答案:

答案 0 :(得分:3)

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

但请参阅以下链接,他们可能会提供帮助:

How to Cache InputStream for Multiple Use

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

答案 1 :(得分:0)

您可以创建自己的InputStream实现(子类),以满足您的需求。我怀疑是否存在这种情况。

我非常怀疑你会从中获得任何可衡量的性能提升,但是,例如,没有太多的逻辑。 FileInputStream您不需要执行任何操作,并且Java已针对垃圾收集短期对象进行了优化。