java 文本区域字体颜色变化
现用java编了一个textArea,通过某些方法输入了一些数字,现在,要改变部分字体的颜色,如果用setForeground(Color)会改变所有数字的颜色,如何选出...
现用java编了一个textArea,通过某些方法输入了一些数字,现在,要改变部分字体的颜色,如果用setForeground(Color) 会改变所有数字的颜色,如何选出想改的字体进行修改,请提供方法。
展开
3个回答
展开全部
JTextPane和JEditorPane都可以实现。因为它们都是以RTF形式来处理文档的。
不过由于在同一文档内部,字体大小可以不同,字体也可以不同,所以无法计算显示空间大小。从而必须自己控制组件大小和宽度。
下面是一个交替以红、蓝色显示数字框的例子。输入的所有字符自动有颜色。
DefaultStyledDocument doc=new DefaultStyledDocument();
doc.setDocumentFilter(new DocumentFilter(){
public void remove(DocumentFilter.FilterBypass fb,int offset,int len){
try{
super.remove(fb,offset,len);
}
catch(BadLocationException ex){}
setAttribute(fb,offset);
}
public void replace(DocumentFilter.FilterBypass fb,int offset,int len,String text,AttributeSet attr){
try{
super.replace(fb,offset,len,text,attr);
}
catch(BadLocationException ex){}
setAttribute(fb,offset);
}
private void setAttribute(DocumentFilter.FilterBypass fb,int offset){
StyledDocument doc=(StyledDocument)(fb.getDocument());
MutableAttributeSet redText=new SimpleAttributeSet(),blueText=new SimpleAttributeSet();
StyleConstants.setForeground(redText,Color.RED);
StyleConstants.setForeground(blueText,Color.BLUE);
for(int i=doc.getLength()-1;i>=offset;i--){
doc.setCharacterAttributes(i,1,i%2==0?redText:blueText,false);
}
}
});
txtInput=new JTextPane();
Insets insets=txtInput.getInsets();
Insets margin=txtInput.getMargin();
FontMetrics metrics=txtInput.getFontMetrics(txtInput.getFont());
txtInput.setPreferredSize(new Dimension(metrics.charWidth('X')*20+insets.left+insets.right+margin.left+margin.right,metrics.getHeight()+insets.top+insets.bottom+margin.top+margin.bottom));
txtInput.setDocument(doc);
add(txtInput);
这个txtInput框的宽度为输入20个字符‘X’的宽度。有关的类分别在javax.swing、javax.swing.text、java.awt中
不过由于在同一文档内部,字体大小可以不同,字体也可以不同,所以无法计算显示空间大小。从而必须自己控制组件大小和宽度。
下面是一个交替以红、蓝色显示数字框的例子。输入的所有字符自动有颜色。
DefaultStyledDocument doc=new DefaultStyledDocument();
doc.setDocumentFilter(new DocumentFilter(){
public void remove(DocumentFilter.FilterBypass fb,int offset,int len){
try{
super.remove(fb,offset,len);
}
catch(BadLocationException ex){}
setAttribute(fb,offset);
}
public void replace(DocumentFilter.FilterBypass fb,int offset,int len,String text,AttributeSet attr){
try{
super.replace(fb,offset,len,text,attr);
}
catch(BadLocationException ex){}
setAttribute(fb,offset);
}
private void setAttribute(DocumentFilter.FilterBypass fb,int offset){
StyledDocument doc=(StyledDocument)(fb.getDocument());
MutableAttributeSet redText=new SimpleAttributeSet(),blueText=new SimpleAttributeSet();
StyleConstants.setForeground(redText,Color.RED);
StyleConstants.setForeground(blueText,Color.BLUE);
for(int i=doc.getLength()-1;i>=offset;i--){
doc.setCharacterAttributes(i,1,i%2==0?redText:blueText,false);
}
}
});
txtInput=new JTextPane();
Insets insets=txtInput.getInsets();
Insets margin=txtInput.getMargin();
FontMetrics metrics=txtInput.getFontMetrics(txtInput.getFont());
txtInput.setPreferredSize(new Dimension(metrics.charWidth('X')*20+insets.left+insets.right+margin.left+margin.right,metrics.getHeight()+insets.top+insets.bottom+margin.top+margin.bottom));
txtInput.setDocument(doc);
add(txtInput);
这个txtInput框的宽度为输入20个字符‘X’的宽度。有关的类分别在javax.swing、javax.swing.text、java.awt中
展开全部
如果有这样的需求, 推荐
JTextPanel
它可以定制里面的内容, 不像JTextField一样, 改变颜色或字体会全部被设置
JTextPanel
它可以定制里面的内容, 不像JTextField一样, 改变颜色或字体会全部被设置
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
估计只能先选一个颜色输出后再选另一个再输出。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询