如何在Swing中读取URL显示页面
说明
以下示例展示了如何在Swing中读取URL显示页面。
我们正在使用以下 API。
-
JEditorPane : 创建一个编辑器框来显示 HTML 内容。
-
jEditorPane.setPage(String url) : 从传递的 url 中获取 HTML 并显示。
代码示例
package com.yiidian;
import javax.swing.*;
import java.awt.*;
import java.io.IOException;
public class SwingTester {
public static void main(String[] args) {
createWindow();
}
private static void createWindow() {
JFrame frame = new JFrame("一点教程网:Swing Tester");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
createUI(frame);
frame.setSize(560, 450);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
private static void createUI(final JFrame frame){
JPanel panel = new JPanel();
LayoutManager layout = new FlowLayout();
panel.setLayout(layout);
JEditorPane jEditorPane = new JEditorPane();
jEditorPane.setEditable(false);
try {
jEditorPane.setPage("http://www.yiidian.com");
} catch (IOException e) {
jEditorPane.setContentType("text/html");
jEditorPane.setText("<html>Page not found.</html>");
}
JScrollPane jScrollPane = new JScrollPane(jEditorPane);
jScrollPane.setPreferredSize(new Dimension(540,400));
panel.add(jScrollPane);
frame.getContentPane().add(panel, BorderLayout.CENTER);
}
}
执行效果如下:
热门文章
优秀文章