Android:如何解析 HTML 站点并仅获取一些特定数据?
我有一个问题:
我有一个链接:http://wap.nastabuss.se/its4wap/QueryForm.aspx?hpl=Teleborg+C+(V%C3%A4xj%C3%B6) 我只想从此链接中获取一些特定数据并显示在 Android 的文本视图中。
这在Android中可能吗,我的意思是有没有机会通过解析或者我不知道,你们可以建议我。
例如,我只想从该网站获取此专栏 Nästa tur (min)。
问候
I have a question:
I have a link: http://wap.nastabuss.se/its4wap/QueryForm.aspx?hpl=Teleborg+C+(V%C3%A4xj%C3%B6)
and I wanna take only some specific data from this link and to show in textview in Android.
Is this possible in Android, I mean is there any chance by parsing or I don't know, you can suggest me guys.
For example I just want to take this column Nästa tur (min) from that site.
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JSoup 非常好并且越来越流行。以下是解析整个表的方法:
JSoup is pretty nice and getting popular. Here's how you could just parse the whole table:
如果解析看起来足够简单并且您希望也可以使用正则表达式来查找 html 的正确部分。无论如何,了解正则表达式在某些时候还是很有用的。使用一些 XML/HTML 解析库是更灵活的方法(例如 XMLReader)。
If the parsing seems simple enough and you want you could also use regular expressions to find the correct part of the html. Regular expressions will be useful to know at some point anyway. Using some XML/HTML parsing library is the more flexible way to do it (XMLReader for example).