4

我有两个控制器和一个启动它们的程序。一个是生成数据的模拟器,另一个是分析数据。两个控制器相互依赖并使用 RMI 进行通信。因此,我在另一个线程中启动模拟器,在我的主线程中启动分析器。 这工作得很好。

现在的问题是,它们都在控制台上产生了相当多的输出,我真的希望它们打印到两个不同的终端。有没有办法做到这一点?

我尝试将模拟器作为新命令行中的子进程启动平台独立性将是下一步)

String separator = System.getProperty("file.separator");
String classpath = System.getProperty("java.class.path");
String path = System.getProperty("java.home")
            + separator + "bin" + separator + "java";
ProcessBuilder processBuilder = 
            new ProcessBuilder(
            "\"" + path + "\"", 
            "-cp", 
            classpath,
            TheEumlator.class.getName());

String command = StringUtils.join(processBuilder.command(), " ");

Process p = Runtime.getRuntime().exec(String.format("cmd /c start cmd.exe /K %s", command));

但是,classpathis 太长了,输出cmd.exeisThe command line is too long.

您知道如何使用自己的输出终端生成另一个线程或进程吗?我很乐意提出任何建议。

干杯

更新

我将 OlaviMustanoja 的答案与此解决方案结合在一起 http://unserializableone.blogspot.co.uk/2009/01/redirecting-systemout-and-systemerr-to.html

它现在使用标准System.outSystem.err堆栈跟踪。此外,它会滚动。

public class ConsoleWindow implements Runnable {

    private String title;
    private JFrame frame;
    private JTextArea outputArea;
    private JScrollPane scrollPane;

    public ConsoleWindow(String title, boolean redirectStreams) {
        this.title = title;
        this.outputArea = new JTextArea(30, 80);
        this.outputArea.setEditable(false);

        if (redirectStreams)
            redirectSystemStreams();
    }

    public ConsoleWindow(String title) {
        this(title, false);
    }

    @Override
    public void run() {
        frame = new JFrame(this.title);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        scrollPane = new JScrollPane(outputArea);
        JPanel outputPanel = new JPanel(new FlowLayout());
        outputPanel.add(scrollPane);

        frame.add(outputPanel);
        frame.pack();
        frame.setVisible(true);
    }

    private void updateTextArea(final String text) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                outputArea.append(text);
            }
        });
    }

    private void redirectSystemStreams() {
        OutputStream out = new OutputStream() {
            @Override
            public void write(int b) throws IOException {
                updateTextArea(String.valueOf((char) b));
            }

            @Override
            public void write(byte[] b, int off, int len) throws IOException {
                updateTextArea(new String(b, off, len));
            }

            @Override
            public void write(byte[] b) throws IOException {
                write(b, 0, b.length);
            }
        };

        System.setOut(new PrintStream(out, true));
        System.setErr(new PrintStream(out, true));
    }

    public void println(String msg) {
        updateTextArea(msg + "\n");
    }

    public void println(Throwable t) {
        println(t.toString());
    }

    public void print(String msg) {
        updateTextArea(msg);
    }

    public void printStackTrace(Throwable t) {
        StringWriter sw = new StringWriter();
        PrintWriter pw = new PrintWriter(sw);
        t.printStackTrace(pw);
        this.println(sw.toString());
    }
}
4

2 回答 2

1

是否有必要将消息输出到这些控制台?如果没有,您可以简单地实现一个类(例如,OutputWindow),它以某种方式接收消息并将它们显示在窗口中。

为了更好地说明我在评论中提出的观点,请考虑以下实现OutputWindow

class OutputWindow implements Runnable {

    private String title;
    private JFrame frame;
    private JTextArea outputArea;

    public OutputWindow(String title) {
        this.title = title;
        this.outputArea = new JTextArea(15, 50);
        this.outputArea.setEditable(false);
    }

    @Override
    public void run() {
        frame = new JFrame(this.title);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JPanel outputPanel = new JPanel(new FlowLayout());
        outputPanel.add(outputArea);

        frame.add(outputPanel);
        frame.pack();
        frame.setVisible(true);
    }

    public void println(String msg) {
        outputArea.append(msg + "\n");
    }

    public void println(Throwable t) {
        this.println(t.toString());
    }

    public void print(String msg) {
        outputArea.append(msg);
    }

    public void printStackTrace(Throwable t) {
        StringWriter sw = new StringWriter();
        PrintWriter pw = new PrintWriter(sw);
        t.printStackTrace(pw);
        this.println(sw.toString());
    }

}

一段简单的、经过相当快速测试的代码。一个人会像这样打开一个新的“控制台”:

OutputWindow console = new OutputWindow("Console");
SwingUtilities.invokeLater(console);

你可以试试:

OutputWindow console = new OutputWindow("Console");
SwingUtilities.invokeLater(console);

try {
    System.out.println(2 / 0);     // just to throw an exception
} catch (ArithmeticException ex) {
    console.printStackTrace(ex);
}

这样做的好处是您可以自定义它的程度!无限可能。用超棒的颜色和任何你想要的功能创建你自己最先进的控制台。

于 2015-01-23T12:47:30.993 回答
0

这里最简单的解决方案是将输出写入文件,手动打开终端并启动阻塞尾

于 2015-01-23T13:09:22.497 回答