次のエラーが表示されます(「for (Element div : divs)」の部分):
Type mismatch: cannot convert from element type org.jsoup.nodes.Element to android.sax.Element
次のコードを使用します。
Document doc = Jsoup.connect("www.example.com").get();
Elements divs = doc.select("div#heading");
for (Element div : divs)
{
System.out.println(div.text());
}
および次のインポート:
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.select.Elements;
import android.app.Activity;
import android.os.Bundle;
import android.sax.Element;
import android.view.Menu;
どうすれば治りますか >