0

私は Android アプリケーションを作成しています。このページ (および「NYHEDER」と表示されているタブ: http://www.stormthebuildingfest.com/ ) から最新ニュースを読む必要があります 。画面。

JSOUP がこの問題の解決に役立つ可能性があるさまざまな場所を見てきましたが、JSOUP クックブックは役に立たないようです。

このページからニュースを取得することさえ可能ですか? どのように?または、JSOUP の場合、クックブックのどの部分がこの問題に当てはまるか教えてもらえますか? http://jsoup.org/cookbook/

前もって感謝します。

4

2 に答える 2

0

関数 XML プル パーサーを使用できます。これが機能するには、XML/RSS が必要です。

http://android-developers.blogspot.co.uk/2011/12/watch-out-for-xmlpullparsernexttext.html

理論に関する良い記事。

于 2012-06-04T17:56:26.477 に答える
0

基本的に、あなたがする必要があるのはこれです:

//This line will get you the whole page
Document doc = Jsoup.connect("http://www.url.com/section.script").get();

//This other line will make sure you get the specific info you're looking for
Elements elems = doc.select("some element");


//Or if you wanna just print it all out, you can simply
System.out.println(doc);

//You can also print just the text (Without ANY tags, or charset issues)
System.out.println(doc.text())

//The .text(); method works for you the variable Elements as
//well. If you got some info, and just want its text, that's
//the best way to go

さらに、Jsoup セレクターAPI についても調べます。

于 2012-06-05T11:04:01.833 に答える