gpt4 book ai didi

java - 设置 JTextArea 中文本颜色的格式

转载 作者:行者123 更新时间:2023-11-30 03:24:19 25 4
gpt4 key购买 nike

我将 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 类

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 输出的屏幕截图:

enter image description here

最佳答案

您需要使用 JTextPane 来显示多种颜色。

查看 Message Console它允许您将消息重定向到文本 Pane 。您还可以控制“err”和“out”消息的文本颜色。

关于java - 设置 JTextArea 中文本颜色的格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30624367/

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