我想开发一个Android应用程序,它从应用程序获取特定输入并将其提供给网站,然后网站获取结果。我想从网站显示此结果并将其显示在Android应用程序中。我尝试使用xml解析,但该网站不是基于xml的网站。该网站为 http://www.fastvturesults.com/ ,输入为滚动编号(usn编号)。任何人都可以指导我如何从该网站获取结果并将其解析到应用程序。
答案 0 :(得分:0)
使用JSOUP从网站中提取数据并显示结果。
Document document = Jsoup.connect(url).get();
// Get the html document title
String title = document.title(); //get title
Elements description = document
.select("meta[name=description]");
// Locate the content attribute
String desc = description.attr("content");
等等。