How can i convert some caracteres of a String in bold characteres? hELPME

How can i convert some caracteres of a String in bold caracteres? hELPMEI have a JList and a DefaultListModel of Strings. So, i have many key words like "proccess", "if", "fi" that i want these characteres in bold.
[228 byte] By [AlessandroBRa] at [2007-11-26 17:40:41]
# 1
In bold where?In a text field? In a label? In an EditorPane?
zadoka at 2007-7-9 0:08:52 > top of Java-index,Desktop,Core GUI APIs...
# 2
In a JList.Ok. I have a String str = "abc ". How can i get "abc " in bold?
AlessandroBRa at 2007-7-9 0:08:52 > top of Java-index,Desktop,Core GUI APIs...
# 3
Use HTML.
camickra at 2007-7-9 0:08:52 > top of Java-index,Desktop,Core GUI APIs...
# 4
How i can use HTML in java to change a String to bold?example String str = "channel "; str = <b>str</b>;like this? syntax error =/
AlessandroBRa at 2007-7-9 0:08:52 > top of Java-index,Desktop,Core GUI APIs...
# 5
Read the section on [url http://java.sun.com/docs/books/tutorial/uiswing/TOC.html]Using HTML in Swing Components[/url].
camickra at 2007-7-9 0:08:52 > top of Java-index,Desktop,Core GUI APIs...