色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

怎么在jframe中加入文字并設置字體顏色

謝彥文2年前16瀏覽0評論

怎么在jframe中加入文字并設置字體顏色?

import javax.swing.text.*;

public class Test extends jframe{

private JTextPane textpane=new JTextPane();

private StyledDocument document=(StyledDocument)textpane.getDocument();

....

public Test(){

......;

setColor();

......;

}

private void setColor(){

SimpleAttributeSet attribute=new SimpleAttributeSet();

StyleConstants.setForeground(attribute,Color.blue);

document.setCharacterAttributes(6,12,attribute,false);

StyleConstants.setForeground(attribute,Color.red);

document.setCharacterAttributes(20,10,attribute,false);

}

......

}

java字體顏色,怎么在jframe中加入文字并設置字體顏色