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 中国語 Web サイトの他の関連記事を参照してください。