
HtmlAgilityPack解析框架
文章平均质量分 80
.NET跨平台
比较认真。编程就是算法和数据结构,算法和数据结构是编程的灵魂。
展开
-
HtmlAgilityPack+Winform实现(天天基金)爬虫工具
本工具用于辅助基金定投,即一键跟踪你所感兴趣的基金,并非帮你挑选基金:)原理:从天天基金网上实时爬取所选基金的当日估算涨幅,以及历史排位好处:在每日3点前了解所投基金走势,从而严格遵循涨时卖,跌时买的规则使用方法:1. 进入\bin\Release目录,下载所有文件到电脑上。2. 打开allfunds.txt编辑你要跟踪的基金名单,每只基金一行,格式为:基金代码,基金名称,是否持有(yes or no)3. 运行GoFund.exe, 点刷新 (默认每10分钟自动刷新)转载 2020-09-25 09:07:48 · 917 阅读 · 0 评论 -
HtmlAgilityPack官方文档(七)【Attributes】
Traversing 允许您遍历HTML节点.方法 名称 描述 Add(HtmlAttribute) Adds supplied item to collection Add(String, String) Adds a new attribute to the collection with the given values Append(String) Create翻译 2017-12-05 20:23:05 · 1463 阅读 · 0 评论 -
HtmlAgilityPack官方文档(六)【Utilities】
HtmlDocument 实用工具HtmlDocument 方法 名称 描述 DetectEncoding(Stream) Detects the encoding of an HTML stream. DetectEncoding(TextReader) Detects the encoding of an HTML text provided on a TextReader翻译 2017-12-05 17:23:17 · 565 阅读 · 0 评论 -
HtmlAgilityPack官方文档(五)【Writer】
保存HtmlDocument &&写入HtmlNodeHtmlDocument - 方法 名称 描述 Save(Stream) Saves the HTML document to the specified stream. Save(StreamWriter) Saves the HTML document to the specified StreamWriter. S翻译 2017-12-05 17:10:53 · 629 阅读 · 0 评论 -
HtmlAgilityPack官方文档(四)【Traversing】
Traversing允许您遍历HTML节点。属性 名称 描述 ChildNodes Gets all the children of the node. FirstChild Gets the first child of the node. LastChild Gets the last child of the node. NextSibling Gets翻译 2017-12-05 16:28:10 · 1344 阅读 · 0 评论 -
HtmlAgilityPack官方文档(三)【Manipulation】
遍历允许您遍历HTML节点。属性 名称 描述 InnerHtml Gets or Sets the HTML between the start and end tags of the object. InnerText Gets the text between the start and end tags of the object. OuterHtml Gets翻译 2017-12-05 14:29:08 · 1320 阅读 · 0 评论 -
HtmlAgilityPack官方文档(二)【Selectors】
Selectors允许您从HtmlDocument中选择HTML节点。Methods 名称 描述 SelectNodes() Selects a list of nodes matching the XPath expression. SelectSingleNode(String) Selects the first XmlNode that matches the XPat翻译 2017-12-05 11:06:54 · 1728 阅读 · 0 评论 -
HtmlAgilityPack官方文档(一)【Parser】
HTML分析器允许您解析HTML并返回一个HtmlDocument。Html Parser Name Description From File Loads an HTML document from a file. From String Loads the HTML document from the specified string. From Web Gets翻译 2017-12-05 10:40:26 · 1203 阅读 · 0 评论 -
HtmlAgilityPack使用(二)【爬取每日一文】
Program.cs代码:using HtmlAgilityPack;using System;using System.IO;using System.Linq;namespace HtmlAgilityPackDemo{ class Program { static void Main(string[] args) {转载 2017-12-11 11:17:13 · 1051 阅读 · 0 评论 -
HtmlAgilityPack使用(一)【获取文档链接】
GetDocLinks.cs代码:using System;using System.Collections;namespace HtmlAgilityPack.Samples{ //获取文档链接 class GetDocLinks { [STAThread] static void Main(string[] args)转载 2017-12-08 16:13:22 · 1748 阅读 · 0 评论