jSoupを使用して、このURLhttp : //skyalipi.blogspot.com/2011/04/there-is-no-resistance-without.htmlからhtmlを解析しようとしています。私はこのコードを使用しています
Document doc = Jsoup.parse("http://skyalipi.blogspot.com/2011/04/there-is-no-resistance-without.html");
Log.d("test", "the elements"+doc);
ログには、次のようなものがあります。
05-26 12:05:05.355: DEBUG/test(696): the elements<html>
05-26 12:05:05.355: DEBUG/test(696): <head></head>
05-26 12:05:05.355: DEBUG/test(696): <body>
05-26 12:05:05.355: DEBUG/test(696): http://skyalipi.blogspot.com/2011/04/there-is-no-resistance-without.html
05-26 12:05:05.355: DEBUG/test(696): </body>
05-26 12:05:05.355: DEBUG/test(696): </html>
段落の内容を取得したい。どこが間違っているのかわかりません。次のURLも参照しましたhttp://jsoup.org/cookbook/extracting-data/attributes-text-html助けてください