本文介绍了如何从网页查看源获取详细信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好

我正在获取有职位发布的网页来源,我需要得到工作细节,如职称,技能,工作地点,经验水平,公司名称,地址,网站来自源的URL,电话。

使用下面的代码我将网页源保存到字符串



WebClient客户端=新的WebClient();

string source = client.DownloadString(CompanyURL);

谢谢。

Hi al
I am getting the source of a webpage having job posting, and i need to get the jobdetails like Job Title, Skills, Job Location, Experience Level, Company Name, Address, Website URL, Phone from the source.
Using below code i saved web page source to string

WebClient client = new WebClient();
string source = client.DownloadString(CompanyURL);
Thanks.

推荐答案


这篇关于如何从网页查看源获取详细信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 09:38