Here you can find the source of stripStyles(Element body)
private static void stripStyles(Element body)
//package com.java2s; import org.jsoup.nodes.Element; import org.jsoup.select.Elements; public class Main { private static void stripStyles(Element body) { Elements divs = body.select("style"); divs.empty();//from w ww.j av a2s .c o m } }