苏飞论坛

 找回密码
 马上注册

QQ登录

只需一步,快速开始

分布式系统框架(V2.0) 轻松承载百亿数据,千万流量!讨论专区 - 源码下载 - 官方教程

HttpHelper爬虫框架(V2.7-含.netcore) HttpHelper官方出品,爬虫框架讨论区 - 源码下载 - 在线测试和代码生成

HttpHelper爬虫类(V2.0) 开源的爬虫类,支持多种模式和属性 源码 - 代码生成器 - 讨论区 - 教程- 例子

查看: 4107|回复: 1

[HttpHelper] HttpHelper有时候会报【本次请求并未返回任何数据】

[复制链接]
发表于 2016-1-8 09:52:14 | 显示全部楼层 |阅读模式
HttpHelper有时候会报【本次请求并未返回任何数据】
这个怎么破?
我是读取人家网站的图片验证码 使用OCR解析,有没有了解这个的朋友帮忙分析下
[C#] 纯文本查看 复制代码
 #region have a try
            //try
            string sCookie = string.Empty;
            string _Referer = string.Empty;
            HttpHelper http = new HttpHelper();
            HttpItem item = new HttpItem()
            {
                URL = "http://www.ems.com.cn/ems/order/singleQuery_t",
                Allowautoredirect = false,
                Method = "GET",
            };
            HttpResult result = http.HttpRequest(item);
            _Referer = result.Html;
            sCookie = result.Cookie;
            item = new HttpItem()
            {
                URL = "http://www.ems.com.cn/ems/rand?d=0.3501349513942344",
                Method = "GET", 
                Cookie = sCookie,
                ResultType = ResultType.Byte,
                Referer = _Referer,
            };
            result = http.HttpRequest(item);
            if (result.ResultByte != null)
            {
                //MessageBox.Show(result.ResultByte.Length.ToString());
                MemoryStream ms = new MemoryStream(result.ResultByte);
                ms.Seek(0, SeekOrigin.Current);
                Bitmap bitmap = (Bitmap)Bitmap.FromStream(ms);

                pictureBox1.Image = Image.FromStream(new MemoryStream(result.ResultByte));

                #region OCR

                UnCodebase ud = new UnCodebase(bitmap);
                bitmap = ud.GrayByPixels();
                ud.ClearNoise(128, 2);

                pictureBox1.Image = bitmap;

                tessnet2.Tesseract ocr = new tessnet2.Tesseract();//声明一个OCR类
                ocr.SetVariable("tessedit_char_whitelist", "0123456789"); //设置识别变量,当前只能识别数字。
                ocr.Init(Application.StartupPath + @"\\tmpe", "eng", true); //应用当前语言包。注,Tessnet2是支持多国语的。语言包下载链接:[url]http://code.google.com/p/tesseract-ocr/downloads/list[/url]
                List<tessnet2.Word> OCRresult = ocr.DoOCR(bitmap, Rectangle.Empty);//执行识别操作
                string code = OCRresult[0].Text;

                #endregion

                item = new HttpItem()
                {
                    URL = "http://www.ems.com.cn/ems/order/singleQuery_t",
                    Method = "POST",
                    Postdata = string.Format("mailNum=BS025000854CN&checkCode={0}", code),
                    Cookie = sCookie,
                    Referer = _Referer,
                };
                result = http.HttpRequest(item);
                textBox1.Text = code;
                richTextBox1.Text = "读取成功 " + DateTime.Now;
                richTextBox1.Text += "\r\n" + result.Html;
                return bitmap;
            }
            else
            {
                richTextBox1.Text = result.Html;
            }
            return null;
            //end try



1. 开通SVIP会员,免费下载本站所有源码,不限次数据,不限时间
2. 加官方QQ群,加官方微信群获取更多资源和帮助
3. 找站长苏飞做网站、商城、CRM、小程序、App、爬虫相关、项目外包等点这里
发表于 2016-1-9 11:52:35 | 显示全部楼层
这说明请求失败,没有返回任何内容
您需要登录后才可以回帖 登录 | 马上注册

本版积分规则

QQ|手机版|小黑屋|手机版|联系我们|关于我们|广告合作|苏飞论坛 ( 豫ICP备18043678号-2)

GMT+8, 2025-1-4 10:28

© 2014-2021

快速回复 返回顶部 返回列表