Here you can find the source of appendString(String str, JTextPane jtext)
public static void appendString(String str, JTextPane jtext) throws BadLocationException
//package com.java2s; import javax.swing.JTextPane; import javax.swing.text.BadLocationException; import javax.swing.text.StyledDocument; public class Main { public static void appendString(String str, JTextPane jtext) throws BadLocationException { StyledDocument document = (StyledDocument) jtext.getDocument(); document.insertString(document.getLength(), str, null); // ^ or your style attribute }//from w ww .j a v a 2s .c o m }