如何增加我的“Swing http查看器”中可见的网络内容的大小?
我最近才开始使用Swing和FX。在我的上一个应用程序中,我包含了一个' FX http查看器,它运行得非常好,并且它的Swing对应物(在这里看到)要好得多。但是我想用Swing构建一个仅仅是为了体验。
虽然它在技术上有效,但显示的内容非常小,难以理解。首先,我想增加其内容的大小,但我也欢迎关于如何改进以下课程的其他建议。
谢谢。
package stringTutorials;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
public class DisplayWebContentSwingPuC
{
public static void invokeDisplayWebContentSwingPuStVM() throws Exception
{
String urlSL = "http://docs.oracle.com/javase/7/docs/api/java/lang/String.html";
JEditorPane jEditorPaneOL = new JEditorPane(urlSL);
jEditorPaneOL.setEditable(false);
JScrollPane pane = new JScrollPane(jEditorPaneOL);
JFrame jFrameOL = new JFrame("Web Content With Swing");
jFrameOL.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jFrameOL.getContentPane().add(pane);
jFrameOL.setSize(800, 600);
jFrameOL.setVisible(true);
}
}