我需要在包含mailto链接的swing中添加行到textarea,然后点击它就可以打开电子邮件应用程序。
我该怎么做?
答案 0 :(得分:6)
正如我在评论中提到的那样您应该尝试使用JTextPane而不是JTextArea 。
为了使超链接工作,您需要做以下事情:
快速演示如下:
final JTextPane textPane = new JTextPane();
textPane.setEditable(false);
textPane.setContentType("text/html");
textPane.setText("File not found please contact:<a href='mailto:michael@uml.com'>e-mail to</a> or call 9639");
textPane.addHyperlinkListener(new HyperlinkListener() {
@Override
public void hyperlinkUpdate(HyperlinkEvent e) {
if(e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
System.out.println(e.getURL());
// write your logic here to process mailTo link.
}
}
});
通过java打开邮件客户端的示例:
try {
Desktop.getDesktop().mail(new URI(e.getURL() + ""));
} catch (IOException e1) {
e1.printStackTrace();
} catch (URISyntaxException e1) {
e1.printStackTrace();
}