java代码怎么将"http://…"这样一个路径,写成类似超链接那样?
发布网友
发布时间:2022-05-25 11:55
我来回答
共2个回答
热心网友
时间:2023-10-24 19:19
java超链接:
button.setLabel("<html><a href=\"http:\\www.cnblogs.com\angelsinklow">angelsinklow</a></html>");
如果用start的话,这样写
Runtime.getRuntime().exec("cmd /c start ‘http:\\www.cnblogs.com\angelsinklow");
Runtime.getRuntime().exec("iexplore http://www.cnblogs.com/angelsinklow");
对于JEditorPane,JTextPane,JTextArea,JLabel可以使用
setText("<html><A href='http://www.baidu.com'>test</A></html>")
对于JEditorPane使用
setEditorKitForContentType("text/html", new PatchedHTMLEditorKit());
addHyperlinkListener(HyperlinkListener ... );
需要引入java.net.url包。
try{getAppletContext().showDocument(new URL("http:\\www.cnblogs.com\angelsinklow"),"打开位置");}
catch(Exception ex) {System.out.println("error"); }
就超链接了。
热心网友
时间:2023-10-24 19:19
jsp不是有内置response用write方法就可以按需要拼接出来链接了