代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
CSharp
】
利用HttpWebRequest自动获取网页编码并获取网页源代码
作者:
hnliwh
/ 发布于
2015/1/8
/
1275
<pre name="code" class="csharp"> <pre name="code" class="csharp">using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using Library.SEO; using System.Net;//其下有WebRequest和WebResponse using System.IO;//用到StreamReader using System.Text.RegularExpressions;//正则表达式,比截取字符串要好用的多 namespace SeoTools { /// <summary> /// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ /// Copyright (C) http://www.taobaonzpd.com/ | http://www.anmoqi10.com/ | http://www.hainandh.com/ | http://www.tb10go.com/ | http://www.tbshc.com/ /// 文件名:E:\创业\站长必备工具\SEOTools\SEOTools\frmSiteAdd.cs /// 作 者:李文辉 /// 日 期:2011.12.19 /// 描 述:新增网站信息 /// 版 本:Seo工具之外链工具----李文辉个人版本 /// 修改历史纪录 /// 版 本 修改时间 修改人 修改内容 /// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ /// </summary> public partial class frmSiteAdd : Form { public frmSiteAdd() { InitializeComponent(); } private void btnSEO_Click(object sender, EventArgs e) { string httpUrl = txtsite_url.Text.Trim(); if (string.IsNullOrEmpty(txtsite_url.Text)) { MessageBox.Show("网址不能为空!"); txtsite_url.Focus(); return; } string charSet = "GB2312";//utf-8 WebRequest oRequest = WebRequest.Create(httpUrl); WebResponse oResponse = oRequest.GetResponse(); StreamReader oReader = new StreamReader(oResponse.GetResponseStream(), Encoding.GetEncoding(charSet)); string html = oReader.ReadToEnd(); Match m1 = Regex.Match(html, "<title>(.*)</title>"); Match m2 = Regex.Match(html, @"(?s)(.+?)\s*<meta\s*name=\""keywords\""\s*content=\""([^\""]+).+?<meta\s*name=\""description\""\s*content=\""([^\""]+)"); if (m1.Groups.Count == 2) { txttitle.Text = m1.Groups[1].Value;//获取title } txtkey_words.Text = m2.Groups[2].Value;//获取keywords txtdescription.Text = m2.Groups[3].Value;//获取description } }} </pre> <pre></pre> <pre></pre> <pre></pre> </pre>
试试其它关键字
HttpWebRequest
网页源代码
同语言下
.
文件IO 操作类库
.
Check图片类型[JPEG(.jpg 、.jpeg),TIF,GIF,BMP,PNG,P
.
机器名和IP取得(IPV4 IPV6)
.
Tiff转换Bitmap
.
linqHelper
.
MadieHelper.cs
.
RegHelper.cs
.
如果关闭一个窗体后激活另一个窗体的事件或方法
.
创建日志通用类
.
串口辅助开发类
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
hnliwh
贡献的其它代码
(
1
)
.
利用HttpWebRequest自动获取网页编码并获取网页源代码
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3