Skip to content

Instantly share code, notes, and snippets.

@jhy
Created May 17, 2019 01:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhy/0d7de86c49f47ee19c06ae086c520638 to your computer and use it in GitHub Desktop.
Save jhy/0d7de86c49f47ee19c06ae086c520638 to your computer and use it in GitHub Desktop.
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import java.io.IOException;
class Scratch {
public static void main(String[] args) throws IOException {
String html = "&#100189";
Document doc = Jsoup.parse(html);
System.out.println(doc.text());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment