Acabo de intentar colorear el texto en JTextPane, pero el problema es que no puede tener diferentes colores para el texto y el subrayado. ¿Cómo debo hacer eso o eso es posible? El siguiente ejemplo imprime todo el texto y el subrayado en ROJO.¿Cómo configuro diferentes colores para texto y subrayado en JTextPane?
JTextPane pane = new JTextPane();
StyleContext context = new StyleContext();
Style style = pane.addStyle("Black", null);
StyleConstants.setAlignment(style, StyleConstants.ALIGN_RIGHT);
StyleConstants.setFontSize(style, 14);
StyleConstants.setSpaceAbove(style, 4);
StyleConstants.setSpaceBelow(style, 4);
StyleConstants.setForeground(style, Color.BLACK);
StyledDocument document = pane.getStyledDocument();
style = pane.addStyle("Red Underline", style);
StyleConstants.setForeground(style, Color.RED);
StyleConstants.setUnderline(style, true);
pane.getDocument().insertString(0, "Test String", style);
+1 A pesar de que la API de estilo parece ser extensible, no pude encontrar ninguna documentación sobre cómo hacerlo. –
Encontrado respuesta aquí ... http: // stackoverflow.com/questions/9502654/underline-styleconstant-in-a-different-color-with-attributeset –
Publique eso como respuesta –