gpt4 book ai didi

java - 使用 apache commons 在 System.out 上打印输入流而不更改流

转载 作者:行者123 更新时间:2023-12-02 06:47:14 25 4
gpt4 key购买 nike

我在这里试图实现的是通过使用 apache-commons 打印出 InputStream 的内容来获得更多调试输出。看起来我正在这个过程中改变流本身。

InputStream is = getClass().getResourceAsStream("file.txt");
IOUtils.copy(is, System.out); //Happily Prints out contents of file.txt
IOUtils.copy(is, System.out); //Doesn't print anything

为什么使用 IOUtils 复制流会改变流?我尝试克隆流,然后将其打印出来,但仍然没有成功。我尝试从 apache commons 克隆 CloseShieldInputStream。

InputStream is = getClass().getResourceAsStream("file.txt");
CloseShieldInputStream csis = new CloseShieldInputStream(is);
IOUtils.copy(csis, System.out);//Happily Prints out contents of file.txt
IOUtils.copy(is, System.out);//Still Doesn't print anything

有人可以解释为什么他们称这些方法为“复制”,即使源流丢失了其内容?如何打印流而不担心丢失其内容?

编辑:

这段代码(除了初始化流的地方)在第 3 方库中非常深入,并且流在经历了几种方法之后才被传递。很难弄清楚流在哪里初始化,并在那里显示它,然后重新初始化。我拼命地尝试显示此流并保持其不变。

最佳答案

System.out 流未被更改。发生的情况是,一旦读取了 is 的内容,它们就已被消耗,您无法再次读取它们。要解决此问题,您需要做的是在第二次调用之前重新初始化 is

关于java - 使用 apache commons 在 System.out 上打印输入流而不更改流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18499928/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com