Jsoup is escaping content of iframe

后端 未结 1 1166
夕颜
夕颜 2020-12-21 06:44

I have this in source html that I want to parse

1条回答
  •  独厮守ぢ
    2020-12-21 07:21

    You can use the unescapeEntities(String,boolean) method of jsoup parser :

     Document doc = Jsoup.parse(html);            
     System.out.println(org.jsoup.parser.Parser.unescapeEntities(doc.body().html(), true));
    

    0 讨论(0)
提交回复
热议问题