Results 1 to 2 of 2
- 07-24-2009, 03:15 AM #1
Member
- Join Date
- Jul 2009
- Posts
- 1
- Rep Power
- 0
Print multi-colored characters in a sentence
Hello All,
I just taught Java to myself this past week, and so not surprisingly, I'm stuck with this program.
Basically I want to print out two sequences in separate lines in a JTextPane (I realized JTextArea is incapable of multi-colored edits). For each position in the sequences, if the two sequences have the same character, I want to print the character in black. Otherwise, if they differ at a particular spot, I want to print the two different letters of the two sequences in red. Here is my code for that:
for( int posBY = 0; posBY < byOutput.length(); posBY++ )
{
SimpleAttributeSet attrs = new SimpleAttributeSet();
if( byOutput.charAt( posBY ) == rmOutput.charAt( posBY ))
{
outputArea.setText(outputArea.getText()+byOutput.c harAt (posBY)+"");
StyledDocument sdoc = outputArea.getStyledDocument();
StyleConstants.setForeground( attrs, Color.BLACK);
sdoc.setCharacterAttributes( byOutput.charAt( posBY ), 1, attrs, true);
}
else
{
outputArea.setText(outputArea.getText()+byOutput.c harAt (posBY)+"");
StyledDocument sdoc = outputArea.getStyledDocument();
StyleConstants.setForeground( attrs, Color.RED);
sdoc.setCharacterAttributes( byOutput.charAt( posBY ), 1, attrs, true);
}
}
But this doesn't work, because my output is all in black characters.
Do you guys know what I'm doing wrong?
Thanks for the help! :)
- 07-24-2009, 03:43 AM #2
You need to make up the styles and add them to the styledDocument and use/refer to them in applying them to text at various positions in the document.
For an example see the section An Example of Using a Text Pane on How to Use Editor Panes and Text Panes.
Similar Threads
-
SWT List w/ colored lines?
By p!lle in forum SWT / JFaceReplies: 1Last Post: 03-23-2009, 03:23 PM -
enter a string sentence
By amorosa19 in forum New To JavaReplies: 11Last Post: 01-28-2009, 04:05 AM -
Preventing inserted text from becoming colored from previous style
By jkhoa in forum AWT / SwingReplies: 2Last Post: 08-10-2007, 12:36 AM -
How to extract info from a sentence
By luisarca in forum XMLReplies: 1Last Post: 06-07-2007, 05:43 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks