我将Java控制台输出重定向到JPanel内部的JTextArea。我使用System.out.setOut(new PrintStream(taOutputStream))
和System.out.setErr(new PrintStream(taOutputStream))
重定向输出。
我遇到的问题是,当文本被重定向到JPanel时,文本总是黑色的。我希望setErr代码像正常一样变红。我尝试为setErr创建一个方法,将文本更改为红色,但最终将其应用于所有文本。
有没有人对如何实现这一点有任何想法,所以错误代码为红色,标准输出为黑色?
以下是我的课程,以及JPanel输出的截图。
TextAreaOutputStream类
package application;
import java.awt.Color;
import java.io.IOException;
import java.io.OutputStream;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;
public class TextAreaOutputStream extends OutputStream
{
private final JTextArea textArea;
private final StringBuilder sb = new StringBuilder();
public TextAreaOutputStream(final JTextArea textArea)
{
this.textArea = textArea;
//this.title = title;
sb.append(">>> ");
}
@Override
public void flush()
{}
@Override
public void close()
{}
@Override
public void write(int b) throws IOException
{
if (b == '\r')
return;
if (b == '\n')
{
final String text = sb.toString() + "\n";
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
textArea.append(text);
}
});
sb.setLength(0);
sb.append(">>> ");
}
sb.append((char) b);
}
public TextAreaOutputStream setTextColor(TextAreaOutputStream textArea)
{
this.textArea.setForeground(Color.red);
return textArea;
}
}
TextAreaOutputStreamTest Class
package application;
![enter image description here][1]
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.PrintStream;
import javax.swing.*;
@SuppressWarnings("serial")
public class TextAreaOutputStreamTest extends JPanel
{
private JTextArea textArea = new JTextArea(15, 75);
private TextAreaOutputStream taOutputStream = new TextAreaOutputStream(
textArea);
public TextAreaOutputStreamTest()
{
setLayout(new BorderLayout());
add(new JScrollPane(textArea, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS));
System.setOut(new PrintStream(taOutputStream));
System.setErr(new PrintStream(taOutputStream.setTextColor(taOutputStream)));
}
public static void createAndShowGui()
{
JFrame frame = new JFrame("Java Console Output");
frame.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
frame.getContentPane().add(new TextAreaOutputStreamTest());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
}
JPanel输出截图:
答案 0 :(得分:2)
您需要使用for(i=0;string1[i]!='\0';i++)
n++;
多种颜色。
查看Message Console,它允许您将邮件重定向到文本窗格。您还可以控制“错误”和“外出”消息的文本颜色。
答案 1 :(得分:0)
您是否尝试过使用:
System.err.println("Error String:");
而不是:
System.setErr(new PrintStream(taOutputStream.setTextColor(taOutputStream)));