JTextArea 替代方案中的自定义文本着色
在 JTextArea 中,应用文本格式会影响整个文档,而不是特定字符或部分。要实现自定义文本着色,请考虑使用 JTextPane 或 JEditorPane 等替代组件。
使用 JTextPane 自定义文本着色
JTextPane 允许您为文本的特定部分设置不同的颜色:
import java.awt.Color; import java.awt.Insets; import java.awt.event.EmptyBorder; import javax.swing.JTextPane; import javax.swing.text.AttributeSet; import javax.swing.text.SimpleAttributeSet; import javax.swing.text.StyleConstants; import javax.swing.text.StyleContext; public class TextColoringDemo { public void setTextColors() { JTextPane textPane = new JTextPane(); textPane.setBorder(new EmptyBorder(new Insets(10, 10, 10, 10))); StyleContext styleContext = StyleContext.getDefaultStyleContext(); AttributeSet blueAttributeSet = styleContext.addAttribute( SimpleAttributeSet.EMPTY, StyleConstants.Foreground, Color.BLUE ); AttributeSet greenAttributeSet = styleContext.addAttribute( SimpleAttributeSet.EMPTY, StyleConstants.Foreground, Color.GREEN ); AttributeSet redAttributeSet = styleContext.addAttribute( SimpleAttributeSet.EMPTY, StyleConstants.Foreground, Color.RED ); AttributeSet orangeAttributeSet = styleContext.addAttribute( SimpleAttributeSet.EMPTY, StyleConstants.Foreground, Color.ORANGE ); // Set the color of specific text sections textPane.setCharacterAttributes(blueAttributeSet, true); textPane.replaceSelection("LOAD R1, 1\n"); textPane.setCharacterAttributes(blueAttributeSet, true); textPane.replaceSelection("DEC R1\n"); textPane.setCharacterAttributes(blueAttributeSet, true); textPane.replaceSelection("STORE M, R1\n"); textPane.setCharacterAttributes(blueAttributeSet, true); textPane.replaceSelection("ADD R4, R1,8\n"); textPane.setCharacterAttributes(greenAttributeSet, true); textPane.replaceSelection("R1\n"); textPane.setCharacterAttributes(greenAttributeSet, true); textPane.replaceSelection("R4\n"); textPane.setCharacterAttributes(redAttributeSet, true); textPane.replaceSelection("M\n"); textPane.setCharacterAttributes(orangeAttributeSet, true); textPane.replaceSelection("1\n"); textPane.setCharacterAttributes(orangeAttributeSet, true); textPane.replaceSelection("8\n"); } }
这种方法允许您自定义任何指定文本部分的颜色JTextPane 组件。
以上是如何在 Java Swing 中超越 JTextArea 实现自定义文本着色?的详细内容。更多信息请关注PHP中文网其他相关文章!