Results 1 to 5 of 5
Thread: Add text to JTextPane with color
- 03-31-2010, 07:08 PM #1
Add text to JTextPane with color
Hey, how can I add text with a color in jEditorPane1. I have
and when I doJava Code:public void sM(String s, Color color){ public void sM(String s, Color c){ String text = jEditorPane1.getText(); jEditorPane1.setForeground(c); jEditorPane1.setText(text + s + "\n"); }the color stays red?Java Code:sM("Hi", Color.white); sM("Hi", Color.red);
- 03-31-2010, 07:34 PM #2
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,420
- Blog Entries
- 7
- Rep Power
- 17
What is the type of your jEditorPane1?
kind regards,
Jos
- 03-31-2010, 07:36 PM #3
Senior Member
- Join Date
- Dec 2008
- Posts
- 526
- Rep Power
- 0
Well, as a rule, JEditorPane should use some additional thing as Document to control its styles .
Here is an example
If that helps put (+1) for my rep. ;)
JEditorPane example
- 03-31-2010, 07:44 PM #4
Senior Member
- Join Date
- Jul 2009
- Posts
- 1,143
- Rep Power
- 5
Read the JTextPane API and follow the link to the Swing tutorial on "Text Component Features" for a working example.
- 04-01-2010, 07:26 PM #5
With my pr0 google skills I have learned how to do it :).
Thanks for your help.
That was it :)Java Code:public void sM(String s, Color c) { // bad: instiantiates a new AttributeSet object on each call SimpleAttributeSet aset = new SimpleAttributeSet(); StyleConstants.setForeground(aset, c); int len = jTextPane1.getText().length(); jTextPane1.setCaretPosition(len); // place caret at the end (with no selection) jTextPane1.setCharacterAttributes(aset, false); jTextPane1.replaceSelection(s + "\n"); // there is no selection, so inserts at caret }
Similar Threads
-
text color
By jpito in forum Advanced JavaReplies: 1Last Post: 11-18-2009, 12:33 AM -
How to Get Text(RichText) from JTextPane
By dorairaj in forum AWT / SwingReplies: 3Last Post: 07-15-2009, 07:33 AM -
Insert text at abitrary point in a JTextPane
By angues in forum AWT / SwingReplies: 6Last Post: 02-02-2009, 04:08 PM -
color text in standalone???
By hung_tyh in forum New To JavaReplies: 6Last Post: 12-24-2008, 04:29 PM -
Changing the color of text
By Lang in forum New To JavaReplies: 1Last Post: 11-04-2007, 09:51 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks