为 Windows Phone 7 或 Android 创建智能手机客户端

发布于 2024-12-02 23:32:25 字数 1431 浏览 4 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我纯我任性 2024-12-09 23:32:25

如果是 Windows 7,则有一个适用于 WP7 的 HtmlAgility Pack 版本。

下面是一些示例代码:

public void Hap()
{
    HtmlWeb.LoadAsync("http://www.mycollege.edu/news", OnCallback);           
}

private void OnCallback(object s, HtmlDocumentLoadCompleted htmlDocumentLoadCompleted)
{    
    var htmlDocument = htmlDocumentLoadCompleted.Document;
    //use agilitypack to parse out news    
}

另一种方法是让某种服务实际执行新闻数据的抓取和管理,然后您控制移动设备使用的格式,例如 XML 或 JSON。

If Windows 7, there is a version of the HtmlAgility Pack for WP7.

Here is a bit of sample code:

public void Hap()
{
    HtmlWeb.LoadAsync("http://www.mycollege.edu/news", OnCallback);           
}

private void OnCallback(object s, HtmlDocumentLoadCompleted htmlDocumentLoadCompleted)
{    
    var htmlDocument = htmlDocumentLoadCompleted.Document;
    //use agilitypack to parse out news    
}

Another approach is to have a service of some sort actually do the scraping and management of the news data then you control the format that the mobile devices consume like XML or JSON.

向地狱狂奔 2024-12-09 23:32:25

查看此问题以获取有关 html 解析的一些线索。 在 Android 中解析 HTML

剧透是一个包含一些 java html 解析内容的链接,您可以尝试:
http://java-source.net/open-source/html-parsers

根据您尝试解析的 html,您可能会更幸运或更坏地从中获得您想要的内容。

Check out this question for some clues on html parsing. Parse HTML in Android

spoiler here is a link that has some java html parsing things that you can try:
http://java-source.net/open-source/html-parsers

Depending on the html that you are trying to parse you may have better or worse luck actually getting the content you want to out of it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文