• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C#在采集数据时的验证与登录处理

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

首先打开网站,查看源文件,找到他的登录表单部分。

比如:
<form name="login" action="loginMain.jsp" method="POST" target="_top">
      <table width="218" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="50" height="28" class="hui"><div align="right">用户名:</div></td>
          <td width="168" height="28"><input class="hui"
            maxlength="40" size="23" name="username" /></td>
        </tr>
        <tr>
          <td height="28" class="hui"><div align="right">密 码:</div></td>
          <td height="28"><input class="hui"
            maxlength="40" size="23" name="passwd" type="password" /></td>
        </tr>
      </table>
</form>
从以上表单可以看出,表单提交的方法是:POST,提交至loginMain.jsp处理,共有两个表单项即:username、passwd

下面是C#模仿登录程序:Login.cs

using System;
using System.Data;
using System.Net;
using System.Text;
using System.IO;
using System.Text.RegularExpressions;

/// <summary>
/// 登录网站并获取Cookies
/// </summary>
/// <returns>成功登录的Cookie信息</returns>
public static CookieContainer Get_Login()
{
             CookieContainer cc
= new CookieContainer();
            
string FormURL="http://blog.hnce.net/loginMain.jsp";                //处理表单的绝对URL地址
            string FormData = "username=slick&passwd=hedy12345";    //表单需要提交的参数,注意改为你已注册的信息。
             ASCIIEncoding encoding = new ASCIIEncoding();
            
byte[] data = encoding.GetBytes(FormData);

             HttpWebRequest request
= (HttpWebRequest)WebRequest.Create(FormURL);
             request.Method
= "POST";    //数据提交方式
             request.ContentType = "application/x-www-form-urlencoded";
             request.ContentLength
= data.Length;
             request.UserAgent
= "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)";
            
//模拟一个UserAgent
             Stream newStream = request.GetRequestStream();
             newStream.Write(data,
0, data.Length);

             newStream.Close();
                   
             request.CookieContainer
= cc;
                   
             HttpWebResponse response
= (HttpWebResponse)request.GetResponse();
             cc.Add(response.Cookies);
             Stream stream
= response.GetResponseStream();
            
string WebContent = new StreamReader(stream, System.Text.Encoding.Default).ReadToEnd();
            
return cc;
}



调用以上的方法来获取需要登录才能查看的内容。

             CookieContainer cc = new CookieContainer();
             cc
= Login.Get_Login();            //获取登录Cookies

            
string PhotoClassURL = "http://blog.hnce.net/xxx.jsp";
             HttpWebRequest Myrequest
= (HttpWebRequest)WebRequest.Create(PhotoClassURL);
             Myrequest.CookieContainer
= cc;
             HttpWebResponse Myresponse
= (HttpWebResponse)Myrequest.GetResponse();
             cc.Add(Myresponse.Cookies);
             Stream Mystream
= Myresponse.GetResponseStream();
            
string sHtml = new StreamReader(Mystream, System.Text.Encoding.Default).ReadToEnd();



sHtml即为你登录之后看到的内容。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap