gpt4 book ai didi

java - java中的system.out.println重定向

转载 作者:行者123 更新时间:2023-12-01 13:18:36 25 4
gpt4 key购买 nike

我想捕获 println 并重定向到文件并打印它

这是我的代码,我希望打印 123/n 456

但这不起作用,我想在打印 outContent 之前我需要一些东西来停止捕获,但我不知道该怎么做。

public static void main(String args[]){
ByteArrayOutputStream outContent = new ByteArrayOutputStream();
System.setOut(new PrintStream(outContent));
System.out.println("123");
System.out.println("456");
System.out.println(outContent.toString());
}

最佳答案

很久以前,在我开始使用 log4j 或其他专用记录器之前,我曾经使用类似于下面的技术。

本质上,它是一个代理PrintStream,它将内容回显到原始PrintStream,并将内容写入其他一些OutputStream(例如到文件)。

您还可以添加一个标志,当设置为 true 时,只需不使用 old.write(b) 即可关闭控制台的回显。这是我用来阻止应用程序向标准输出喷出大量垃圾的技术,这会减慢应用程序的速度,特别是当您在图形环境中运行时......

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintStream;

public class RedirectStdOut {

public static void main(String[] args) {

OutputStream os = null;

try {

os = new FileOutputStream(new File("Log.txt"));
LoggingPrintStream lps = new LoggingPrintStream(os);

System.out.println("This is going to the console only...");
lps.install();
System.out.println("This is going to console and file");
System.out.println("Fun times");
lps.uinstall();
System.out.println("This is going to console only...");

} catch (IOException exp) {
exp.printStackTrace();
} finally {
try {
os.close();
} catch (Exception e) {
}
}

}

public static class LoggingPrintStream {

private OutputStream os;
private PrintStream old;

public LoggingPrintStream(OutputStream os) {
this.os = os;
}

public void install() {
old = System.out;
System.setOut(new PrintStream(new OutputStream() {
@Override
public void write(int b) throws IOException {
old.write(b);
os.write(b);
}
}));
}

public void uinstall() throws IOException {
try {
os.flush();
} finally {
try {
os.close();
} catch (Exception e) {
}
System.setOut(old);
}
}

}

}

我试图弄清楚是否可以链接流,但我的头脑无法完成今天的任务(周五下午)

关于java - java中的system.out.println重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22241024/

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