Here you can find the source of getFontFamily(JTextPane textPane)
public static String getFontFamily(JTextPane textPane)
//package com.java2s; //License from project: Apache License import javax.swing.JTextPane; import javax.swing.text.StyleConstants; public class Main { /**//from w w w . ja va 2 s. com * Returns the font family of the current character. */ public static String getFontFamily(JTextPane textPane) { String family = (String) (textPane.getInputAttributes() .getAttribute(StyleConstants.FontFamily)); return family; } }