Tag Archives: جافا
How to add colored text to the document JAVA

How to add colored text to the document JAVA

This code generate a colored text in JTextPane like this image <br /> <p>import javax.swing.*;</p><br /> <p>import javax.swing.text.*;</p><br /> <p>import java.awt.Color;</p><br /> <p>public class ColorPane extends JTextPane {</p><br /> <p>public void appendNaive(Color c, String s) { // naive implementation</p><br /> <p>// bad: instiantiates a new AttributeSet object on each call</p><br /> <p>SimpleAttributeSet aset = new [...]

6 Comments Continue Reading →