代码是
String content;
content = "<html><head>....."
+"<a href='http://yahoo.com' "
+ "onclick=\"window.open('http://google.com'); \">"
+ "Click Here</a>"
....
+"</body>"
+"</html>"
答案 0 :(得分:0)
我试过了:
public class Test{
public static void main(String []args){
System.out.println("Hello World");
String content;
content = "<html><head>"
+"<a href='http://yahoo.com'"
+ "onclick=\"window.open('http://google.com'); \">"
+ "Click Here</a>"
+"</body>"
+"</html>";
System.out.println(content);
}
}
并将生成的字符串粘贴到一个空白的html文件中,在浏览器中打开它,看到它按预期工作(Yahoo链接打开雅虎和谷歌。)。