Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a string in a textbox and want only one of the words to be in bold. Is there a way to do that in code without appending the text? Sort of like how it would be done in xml/html... How about an underline, too?

Prefer not using xml or html for this - prefer to keep it a string in java code...

Thanks

share|improve this question
I think you'll have to add some information, e.g. exactly what control are you using - this is Java right? – steinar Oct 20 '10 at 0:29

2 Answers

up vote 1 down vote accepted

Many Swing components already understand a subset of HTML as long as you surround the text in <html>...</html>.

share|improve this answer
Ignacio - Perfect - thanks – headscratch Oct 20 '10 at 0:44

I like using a JTextPane with attributes:

JTextPane textPane = new JTextPane();
textPane.setText( "one\ntwo\nthree\nfour\nfive\nsix\nseven\neight" );
StyledDocument doc = textPane.getStyledDocument();

//  Define a keyword attribute

SimpleAttributeSet keyWord = new SimpleAttributeSet();
StyleConstants.setForeground(keyWord, Color.RED);
StyleConstants.setBold(keyWord, true);

//  Change attributes on some text

doc.setCharacterAttributes(4, 3, keyWord, false);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.