>  기사  >  Java  >  JTextArea를 넘어 Java Swing에서 사용자 정의 텍스트 색상을 달성하는 방법은 무엇입니까?

JTextArea를 넘어 Java Swing에서 사용자 정의 텍스트 색상을 달성하는 방법은 무엇입니까?

Susan Sarandon
Susan Sarandon원래의
2024-11-27 00:46:10402검색

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 구성요소.

위 내용은 JTextArea를 넘어 Java Swing에서 사용자 정의 텍스트 색상을 달성하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.