在 JTextArea 中格式化文本颜色
Formatting Text Color In JTextArea
我正在将 Java 控制台输出重定向到 JPanel 内部的 JTextArea。我正在使用 System.out.setOut(new PrintStream(taOutputStream))
和 System.out.setErr(new PrintStream(taOutputStream))
来重定向输出。
我 运行 遇到的问题是,文本在重定向到 JPanel 时始终为黑色。我希望 setErr 代码像往常一样是红色的。我尝试为 setErr 创建一个方法来将文本更改为红色,但它最终将它应用于所有文本。
有没有人知道如何实现这个错误代码是红色的,标准输出是黑色的?
这是我的 classes,以及 JPanel 输出的屏幕截图。
TextAreaOutputStream class
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 输出的屏幕截图:
您是否尝试过只使用:
System.err.println("Error String:");
而不是:
System.setErr(new PrintStream(taOutputStream.setTextColor(taOutputStream)));
您需要为多种颜色使用 JTextPane
。
查看 Message Console,它允许您将消息重定向到文本窗格。您还可以控制 "err" 和 "out" 消息的文本颜色。
我正在将 Java 控制台输出重定向到 JPanel 内部的 JTextArea。我正在使用 System.out.setOut(new PrintStream(taOutputStream))
和 System.out.setErr(new PrintStream(taOutputStream))
来重定向输出。
我 运行 遇到的问题是,文本在重定向到 JPanel 时始终为黑色。我希望 setErr 代码像往常一样是红色的。我尝试为 setErr 创建一个方法来将文本更改为红色,但它最终将它应用于所有文本。
有没有人知道如何实现这个错误代码是红色的,标准输出是黑色的?
这是我的 classes,以及 JPanel 输出的屏幕截图。
TextAreaOutputStream class
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 输出的屏幕截图:
您是否尝试过只使用:
System.err.println("Error String:");
而不是:
System.setErr(new PrintStream(taOutputStream.setTextColor(taOutputStream)));
您需要为多种颜色使用 JTextPane
。
查看 Message Console,它允许您将消息重定向到文本窗格。您还可以控制 "err" 和 "out" 消息的文本颜色。