Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JSouporg.jsoup.nodes.Documentをウィンドウに表示できますか?私がやっていることは、からHTMLコードを取得することであり、ウィンドウDocument doc = Jsoup.connect(URL).get();に表示したいと思いdocます。どうすればこれを行うことができますか?また、可能であれば、正しくスタイリングできますか?
org.jsoup.nodes.Document
Document doc = Jsoup.connect(URL).get();
doc
JSoupこの目的には不適切な API です。HTML コンテンツをドキュメント要素に解析するために使用されます。
JSoup
JEditorPanesetPageページのスタイリングも提供するコンテンツを設定するメソッドがあります。
JEditorPane
setPage
editorPane.setPage(new URL("http://www.mysite.com"));