带有多个单引号和双引号的java html内容

时间:2016-12-10 05:16:32

标签: java html string quotations quotation-marks

  • 你好所有简单的问题,但我无法回答。
  • 我为html content String编写了java代码。
  • 我的目标是:点击此处打开yahoo.com& google.com网页
  • 我可以打开html并点击 点击此处 标记我只能打开 yahoo.com页面并且无法打开google.com页面
  • 我正面临"的问题" ' ' 符号在正确的位置..
  • 代码是

    String content;
    content = "<html><head>....."
    +"<a href='http://yahoo.com' "
    + "onclick=\"window.open('http://google.com'); \">"
    + "Click Here</a>"
    ....
    +"</body>"
    +"</html>"
    

1 个答案:

答案 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链接打开雅虎和谷歌。)。