editorPane.setContentType("text/html");
editorPane.setFont(new Font("Segoe UI", 0, 14));
editorPane.setText("Hello World");
これは、テキストのフォントを変更しません。HTML エディタ キットで JEditorPane のデフォルト フォントを設定する方法を知る必要があります。
編集:
editorPane.setContentType("text/html");
editorPane.setFont(new Font("Segoe UI", 0, 14));
editorPane.setText("Hello World");
これは、テキストのフォントを変更しません。HTML エディタ キットで JEditorPane のデフォルト フォントを設定する方法を知る必要があります。
編集:
これを試してください:
JEditorPane pane = new JEditorPane();
pane.putClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES, Boolean.TRUE);
pane.setFont(SOME_FONT);
de-co-deブロガーのすべてのクレジット!ソース: http://de-co-de.blogspot.co.uk/2008/02/setting-font-in-jeditorpane.html
私はちょうどそれをテストしました。これにより、JEditorPane は JLabel と同じフォントを使用するようになりました
JEditorPane pane = new JEditorPane();
pane.putClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES, Boolean.TRUE);
pane.setFont(someOrdinaryLabel.getFont());
完璧に動作します。
HTML をレンダリングする場合、JEditorPane のフォントをスタイル シートで更新する必要があります。
JEditorPane editorPane =
new JEditorPane(new HTMLEditorKit().getContentType(),text);
editorPane.setText(text);
Font font = new Font("Segoe UI", Font.PLAIN, 24));
String bodyRule = "body { font-family: " + font.getFamily() + "; " +
"font-size: " + font.getSize() + "pt; }";
((HTMLDocument)editorPane.getDocument()).getStyleSheet().addRule(bodyRule);
以下で試してください
editorPane.setFont(new Font("Segoe UI", Font.PLAIN, 24));
以下は作業コードです:
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Container;
import java.awt.Font;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextPane;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.Document;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.StyleConstants;
public class jeditorfont extends JFrame {
private JTextPane textPane = new JTextPane();
public jeditorfont() {
super();
setSize(300, 200);
textPane.setFont(new Font("Segoe UI", Font.PLAIN, 24));
// create some handy attribute sets
SimpleAttributeSet red = new SimpleAttributeSet();
StyleConstants.setForeground(red, Color.red);
StyleConstants.setBold(red, true);
SimpleAttributeSet blue = new SimpleAttributeSet();
StyleConstants.setForeground(blue, Color.blue);
SimpleAttributeSet italic = new SimpleAttributeSet();
StyleConstants.setItalic(italic, true);
StyleConstants.setForeground(italic, Color.orange);
// add the text
append("NULL ", null);
append("Blue", blue);
append("italic", italic);
append("red", red);
Container content = getContentPane();
content.add(new JScrollPane(textPane), BorderLayout.CENTER);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
protected void append(String s, AttributeSet attributes) {
Document d = textPane.getDocument();
try {
d.insertString(d.getLength(), s, attributes);
} catch (BadLocationException ble) {
}
}
public static void main(String[] args) {
new jeditorfont().setVisible(true);
}
}
参照: http://www.java2s.com/Code/JavaAPI/javax.swing/JTextPanesetFontFontfont.htm
コードを確認しましたが、問題はありません。他のフォントをテストしましたか? 「Segoe Script」フォントを試してみて、変化するかどうかを確認してください。
編集: 以下のコードを試してみましたが、問題なく動作します。投稿したコードは、実装したものとまったく同じですか?
editorPane.setContentType("text/html");
editorPane.setFont(new Font("Segoe Script", 0, 14));
editorPane.setText("it works!");
Edit2: main メソッドを次のように変更します。Nimbus LookAndFeel を設定します。他の LookAndFeels はまだチェックしていません。
public static void main(String[] args)
{
try
{
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels())
{
if ("Nimbus".equals(info.getName()))
{
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | javax.swing.UnsupportedLookAndFeelException ex)
{
java.util.logging.Logger.getLogger(EditorPaneDemo.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
java.awt.EventQueue.invokeLater(new Runnable()
{
@Override
public void run()
{
new EditorPaneDemo();
}
});
}