开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用微信号发送消息登录论坛

新人指南 邀请好友注册 - 我关注人的新帖 教你赚取精币 - 每日签到


求职/招聘- 论坛接单- 开发者大厅

论坛版规 总版规 - 建议/投诉 - 应聘版主 - 精华帖总集 积分说明 - 禁言标准 - 有奖举报

查看: 16782|回复: 3
收起左侧

[C#图文教程] http网页访问 GET POST 调用HttpHelp类

[复制链接]
发表于 2019-3-28 16:14:05 | 显示全部楼层 |阅读模式   广东省揭阳市
引用 HttpHelp类 下载地址
https://bbs.125.la/thread-14338871-1-1.html
源码如下

  
public static String Post (string _url, string _body, bool is_gbk = false)
{
String _encode = String.Empty;
if (is_gbk == true)
{
_encode = "GB2312";
}
else
{
_encode = "utf-8";
}
string _str = string.Empty;
try
{
HttpItem le_item = new HttpItem ()
{
Method = "post",
URL = _url,
Postdata = _body,
Referer = _url,
UserAgent = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.75 Safari/537.36",
//Cookie = this.cookie,
Encoding = System.Text.Encoding.GetEncoding (_encode),
Accept = "application/json, text/javascript, */*; q=0.01",
ContentType = "application/x-www-form-urlencoded; charset=UTF-8",
};
//
HttpHelper http = new HttpHelper ();
HttpResult le_http_res = http.GetHtml (le_item);
_str = le_http_res.Html;
}
catch (Exception e)
{
_str = "";
Console.WriteLine (e.Message);
}
return _str;
}
public static String Get (string _url, bool is_gbk = false)
{
String _encode = String.Empty;
if (is_gbk == true)
{
_encode = "GB2312";
}
else
{
_encode = "utf-8";
}
string _str = string.Empty;
try
{
HttpItem le_item = new HttpItem ()
{
Method = "get",
URL = _url,
Referer = _url,
UserAgent = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.75 Safari/537.36",
//Cookie = this.cookie,
Encoding = System.Text.Encoding.GetEncoding (_encode),
Accept = "application/json, text/javascript, */*; q=0.01",
ContentType = "application/x-www-form-urlencoded; charset=UTF-8",
};
//
HttpHelper http = new HttpHelper ();
HttpResult le_http_res = http.GetHtml (le_item);
_str = le_http_res.Html;
}
catch (Exception e)
{
_str = "";
Console.WriteLine (e.Message);
}
return _str;
}

点评

果然可以用 谢谢 官方那边的代码竟然用不了太坑了   湖北省武汉市  发表于 2021-5-28 15:29
结帖率:91% (192/211)

签到天数: 10 天

发表于 2021-5-28 15:20:24 | 显示全部楼层   湖北省武汉市
这个还能用吗?类库文件在哪里下载呀  
回复 支持 反对

使用道具 举报

结帖率:80% (32/40)
发表于 2019-3-28 18:23:31 | 显示全部楼层   湖北省武汉市
看不懂看不懂
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则 致发广告者

发布主题 收藏帖子 返回列表

sitemap| 易语言源码| 易语言教程| 易语言论坛| 易语言模块| 手机版| 广告投放| 精易论坛
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表精易立场!
论坛帖子内容仅用于技术交流学习和研究的目的,严禁用于非法目的,否则造成一切后果自负!如帖子内容侵害到你的权益,请联系我们!
防范网络诈骗,远离网络犯罪 违法和不良信息举报电话0663-3422125,QQ: 793400750,邮箱:wp@125.la
Powered by Discuz! X3.4 揭阳市揭东区精易科技有限公司 ( 粤ICP备12094385号-1) 粤公网安备 44522102000125 增值电信业务经营许可证 粤B2-20192173

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