http://bd.qq.com/new/index.jsp
带验证码登陆
[C#] 纯文本查看 复制代码 HttpHelper http = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = "http://bd.qq.com/new/index.jsp",
Encoding = Encoding.Default,//编码格式(utf-8,gb2312,gbk) 可选项 默认类会自动识别
//Encoding = Encoding.Default,
Method = "get",//URL 可选项 默认为Get
Cookie = "",//字符串Cookie 可选项
Referer = "",//来源URL 可选项
Postdata = "",//Post数据 可选项GET时不需要写
Timeout = 100000,//连接超时时间 可选项默认为100000
ReadWriteTimeout = 30000,//写入Post数据超时时间 可选项默认为30000
UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",//用户的浏览器类型,版本,操作系统 可选项有默认值
ContentType = "text/html",//返回类型 可选项有默认值
Allowautoredirect = false,//是否根据301跳转 可选项
ResultType = ResultType.Byte
};
HttpResult result = http.GetHtml(item);
string cookie = result.Cookie;
Image img = byteArrayToImage(result.ResultByte);
this.pictureBox1.Image = img;
this.richTextBox1.Text = result.Html;
这样先获得页面
容纳后通过byteArrayToImage方法返回图片显示到我winform上,加上输入的QQ号和密码登陆
private Image byteArrayToImage(byte[] Bytes)
{
MemoryStream ms = new MemoryStream(Bytes);
Image outputImg = Image.FromStream(ms);
return outputImg;
}
但是老师提示Btyes参数为null,
为什么娶不到
|