Java Swing で JTextArea を超えてカスタム テキストの色付けを実現するにはどうすればよいですか?

Susan Sarandon
リリース: 2024-11-27 00:46:10
オリジナル
395 人が閲覧しました

How to Achieve Custom Text Coloring in Java Swing Beyond JTextArea?

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

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート