导读部分
【HttpHelper万能框架】教程目录贴 http://www.sufeinet.com/thread-9989-1-1.html
教程部分
有了这个
[C#] 纯文本查看 复制代码 /// <summary>
/// 根据字符生成Cookie和精简串,将排除path,expires,domain以及重复项
/// </summary>
/// <param name="strcookie">Cookie字符串</param>
/// <returns>精简串</returns>
public static string GetSmallCookie(string strcookie) 精简化Cookie的方法大家以后就省去了很多麻烦
使用方法很简单,向下看
第一步引入命名空间
[C#] 纯文本查看 复制代码 using CsharpHttpHelper;
using CsharpHttpHelper.Enum;
第二步,设置方法如下
[C#] 纯文本查看 复制代码 //获取精简字符串Cookie
//创建Httphelper对象
HttpHelper http = new HttpHelper();
//创建Httphelper参数对象
HttpItem item = new HttpItem()
{
URL = "http://www.sufeinet.com",//URL 必需项
Method = "get",//URL 可选项 默认为Get
ContentType = "text/html",//返回类型 可选项有默认值
//ResultCookieType = ResultCookieType.String //默认值可以不写
};
//请求的返回值对象
HttpResult result = http.GetHtml(item);
//获取请求的Cookie
string cookie = result.Cookie;
//输出
Response.Write(cookie + "<br/><br/>");
//产获取精简化的Cookie,将自动去掉\r\n换行符号,path,expires,domain,去重复等多余选项
cookie = HttpHelper.GetSmallCookie(cookie);
//输出
Response.Write(cookie);
这里其实大家不需要使用Httphelper做什么,只需要调用的方法GetSmallCookie就行了,
这里会自动处理\ r\n换行符号,path,expires,domain,去重复等
看看上面代码执行效果
对应文本
[C#] 纯文本查看 复制代码
rZmA_05a9_saltkey=Q7U1I620; expires=Thu, 09-Oct-2014 06:54:36 GMT; path=/; domain=.sufeinet.com; httponly,rZmA_05a9_lastvisit=1410242076; expires=Thu, 09-Oct-2014 06:54:36 GMT; path=/; domain=.sufeinet.com,rZmA_05a9_sid=GJq835; expires=Wed, 10-Sep-2014 06:54:36 GMT; path=/; domain=.sufeinet.com,rZmA_05a9_lastact=1410245676%09forum.php%09; expires=Wed, 10-Sep-2014 06:54:36 GMT; path=/; domain=.sufeinet.com,rZmA_05a9_onlineusernum=440; expires=Tue, 09-Sep-2014 06:59:36 GMT; path=/; domain=.sufeinet.com,rZmA_05a9_sid=GJq835; expires=Wed, 10-Sep-2014 06:54:36 GMT; path=/; domain=.sufeinet.com<br/>
//精简化之后的Cookie
rZmA_05a9_saltkey=Q7U1I620;
rZmA_05a9_lastvisit=1410242076;
rZmA_05a9_sid=GJq835;
rZmA_05a9_lastact=1410245676%09forum.php%09;
rZmA_05a9_onlineusernum=440;
这个在我们登录时,有些网站验证比较严格,很多同者就是死在这上面的。
这次通过精简大家就可以直接调用方法来处理了。
再也不用头大Cookie问题了。
|