Swing JDialog / JTextPane和HTML链接

时间:2011-09-03 08:11:08

标签: java html swing user-interface jtextpane

我在JDialog的JTextPane中使用html页面 在html中我有一个<a href="mailto:email@adress.com">John</a>
当我通过浏览器查看网页时,当鼠标转到链接时,我可以看到mailto 当我按下链接时,我收到错误“没有安装默认邮件客户端”,但我想这是因为在我的电脑中我还没有配置Outlook或其他程序。
当我从Swing应用程序打开JDialog时,我看到John突出显示为链接,但是当我按下链接时没有任何反应。
我希望得到与浏览器相同的错误消息 所以我的问题是可以通过Swing应用程序打开链接吗?

由于

2 个答案:

答案 0 :(得分:5)

工具提示(显示目标超链接地址)和按下操作都不会自动发生,您必须对其进行编码:首先,使用ToolTipManager注册窗格,对于后者,注册HyperlinkListener,如:< / p>

    final JEditorPane pane = new JEditorPane("http://swingx.java.net");
    pane.setEditable(false);
    ToolTipManager.sharedInstance().registerComponent(pane);

    HyperlinkListener l = new HyperlinkListener() {
        @Override
        public void hyperlinkUpdate(HyperlinkEvent e) {
            if (HyperlinkEvent.EventType.ACTIVATED == e.getEventType()) {
                try {
                    pane.setPage(e.getURL());
                } catch (IOException e1) {
                    e1.printStackTrace();
                }
            }

        }

    };
    pane.addHyperlinkListener(l);

示例是关于在同一窗格中打开页面。如果要激活默认的浏览器/邮件客户端,请让桌面(jdk1.6的新手)为您执行此操作

答案 1 :(得分:0)

final JEditorPane jep = new JEditorPane("text/html",
    "The rain in <a href='http://foo.com/'>Spain</a> falls mainly on the <a href='http://bar.com/'>plain</a>.");

jep.setEditable(false);
jep.setOpaque(false);
final Desktop desktop = Desktop.getDesktop(); 

jep.addHyperlinkListener(new HyperlinkListener() {

    public void hyperlinkUpdate(HyperlinkEvent hle) {
        if (HyperlinkEvent.EventType.ACTIVATED.equals(hle.getEventType())) {
            try {
                System.out.println(hle.getURL());
                jep.setPage(hle.getURL());
                try {
                    desktop.browse(new URI(hle.getURL().toString()));
                } catch (URISyntaxException ex) {
                    Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
                }
            } catch (IOException ex) {
                Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
            }

        }
    }
});

JPanel p = new JPanel();
p.add(new JLabel("Foo."));
p.add(jep);
p.add(new JLabel("Bar."));

JFrame f = new JFrame("HyperlinkListener");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.getContentPane().add(p, BorderLayout.CENTER);
f.setSize(400, 150);
f.setVisible(true);