C# HTTP网络常用方法封装
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Register
- {
- public class HttpClass
- {
- private System.Net.HttpWebRequest Request = null;
- private System.Net.WebResponse Response = null;
- private System.IO.Stream Stream = null;
- private System.IO.StreamReader Read = null;
- private System.Byte[] Byte = null;
- private System.Text.Encoding Encode = System.Text.Encoding.UTF8;
- private System.Text.RegularExpressions.Match Match = null;
- /// <summary>
- /// 公开属性
- /// </summary>
- public System.Net.WebProxy Proxy = new System.Net.WebProxy()
- public string IPFor = null;
- public bool HideInfo = false;
- /// <summary>
- /// 初始化Request
- /// </summary>
- /// <param name="Request">对象</param>
- private void init_Request(ref System.Net.HttpWebRequest Request)
- {
- //终端信息
- Request.Accept = "text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,image/png,application/java-archive,application/java,application/x-java-archive,text/vnd.sun.j2me.app-descriptor,application/vnd.oma.drm.message,application/vnd.oma.drm.content,application/vnd.oma.dd+xml,application/vnd.oma.drm.rights+xml,application/vnd.oma.drm.rights+wbxml,application/x-nokia-widget,text/x-opml,application/vnd.nokia.headwrapper,*/*;q=0.5";
- Request.Headers.Add("Accept-Charset", "iso-8859-1,utf-8;q=0.7,*;q=0.7");
- Request.Headers.Add("Accept-Language", "zh-cn, zh;q=1.0,en;q=0.5,en;q=0.5,en;q=0.5");
- Request.Headers.Add("Accept-Encoding", "gzip, deflate, x-gzip, identity; q=0.9");
- Request.Headers.Add("X-Nokia-MusicShop-Version", "11.0842.9");
- //承载方式
- Request.Headers.Add("X-Nokia-MusicShop-Bearer", "GPRS/3G");
- Request.Headers.Add("X-Nokia-CONNECTION_MODE", "TCP");
- Request.Headers.Add("X-Nokia-BEARER", "3G");
- Request.Headers.Add("x-up-bear-type", "GPRS/EDGE");
- Request.Headers.Add("X-Up-Bearer-Type", "GPRS");
- //GGSN信息
- Request.Headers.Add("x-source-id", "GZGGSN1101BEr");
- Request.Headers.Add("Client-IP", "211.139.151.74");
- if (IPFor != null) Request.Headers.Add("x-forwarded-for", IPFor);
- //网关信息
- Request.Headers.Add("Via", "WTP/1.1 192.168.13.33 (Nokia WAP Gateway 4.1/CD1/ECD13_E/4.1.05)");
- Request.Headers.Add("X-Nokia-gateway-id", "NWG/4.1/Build4.1.05");
- //目标主机
- Request.Headers.Add("X-Online-Host", Request.Host);
- //重要信息
- if (!HideInfo)
- {
- Request.UserAgent = "Mozilla/5.0 (SymbianOS/9.4; U; Series60/5.0 Nokia5230/10.0.055; Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413";
- Request.Headers.Add("x-wap-profile", "http://nds1.nds.nokia.com/uaprof/Nokia5230r100-3G.xml")
- if (IPFor != null)
- {
- Request.Headers.Add("x-nokia-ipaddress", IPFor);
- }
- }
- //自动重定向
- Request.AllowAutoRedirect = false;
- //代理设置
- if (Proxy.Address != null)
- {
- Request.Proxy = Proxy;
- }
- //其它杂项
- Request.KeepAlive = false;
- Request.Timeout = 8000;
- }
- // public void GZipDecompress(ref System.IO.Stream refStream)
- // {
- // using (System.IO.MemoryStream stream = new System.IO.MemoryStream())
- // {
- // using (System.IO.Compression.GZipStream gZip = new System.IO.Compression.GZipStream(refStream, System.IO.Compression.CompressionMode.Decompress, true))
- // {
- // System.IO.BinaryReader reader = new System.IO.BinaryReader(gZip);
- // System.IO.BinaryWriter writer = new System.IO.BinaryWriter(stream);
- // while (true)
- // {
- // char[] p = reader.ReadChars(32);
- // byte[] buffer = reader.ReadBytes(32);
- // if (buffer == null || buffer.Length < 1) break;
- // writer.Write(buffer);
- // }
- // writer.Close();
- // gZip.CopyTo(stream);
- // }
- // stream.CopyTo(refStream);
- // }
- // }
- /// <summary>
- /// 获取网页数据
- /// </summary>
- /// <param name="url">请求地址</param>
- /// <returns>失败返回null</returns>
- public string get_Internet(string url, string cookie = null)
- {
- try
- {
- Request = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(url);
- url = null;
- if (Request != null)
- {
- init_Request(ref Request);
- if (cookie != null) { Request.Headers.Add("Cookie", cookie); }
- using (Response = Request.GetResponse())
- {
- Stream = Response.GetResponseStream();
- using (Read = new System.IO.StreamReader(Stream, System.Text.Encoding.UTF8))
- {
- url = Read.ReadToEnd();
- }
- Read = null;
- Stream = null;
- }
- Response = null;
- Request.Abort();
- Request = null;
- }
- return url;
- }
- catch(Exception ex)
- {
- Error.Write(ref ex);
- return null;
- }
- }
- /// <summary>
- /// 获取数据流
- /// </summary>
- /// <param name="url">地址</param>
- /// <param name="Stream">返回数据流</param>
- /// <returns>失败为false</returns>
- public bool get_Stream(string url, ref System.IO.MemoryStream Stream, ref string cookie)
- {
- try
- {
- Request = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(url);
- init_Request(ref Request);
- if (cookie != null) { Request.Headers.Add("Cookie", cookie); }
- using (Response = Request.GetResponse())
- {
- Response.GetResponseStream().CopyTo(Stream);
- if (cookie != null)
- {
- cookie += " " + get_Match(Response.Headers.Get("Set-Cookie"), "verifysession=([^;]+);").Replace(";", "");
- }
- }
- Response = null;
- }
- catch (Exception ex)
- {
- Error.Write(ref ex);
- return false;
- }
- if (Request != null)
- {
- Request.Abort();
- Request = null;
- }
- return true;
- }
- /// <summary>
- /// 提交数据并获取返回数据
- /// </summary>
- /// <param name="url">请求地址</param>
- /// <returns>失败返回null</returns>
- public string post_Internet(string url, string data, string cookie = null)
- {
- try
- {
- Request = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(url);
- url = null;
- if (Request != null)
- {
- init_Request(ref Request);
- if (cookie != null) { Request.Headers.Add("Cookie", cookie); }
- Request.Method = "POST";
- Request.ServicePoint.Expect100Continue = false;
- Request.ContentType = "application/x-www-form-urlencoded; charset=utf-8";
- Byte = Encode.GetBytes(data);
- Request.ContentLength = Byte.Length;
- using (Stream = Request.GetRequestStream())
- {
- Stream.Write(Byte, 0, Byte.Length);
- }
- Stream = null;
- Byte = null;
- data = null;
- using (Response = Request.GetResponse())
- {
- Stream = Response.GetResponseStream();
- using (Read = new System.IO.StreamReader(Stream))
- {
- url = Read.ReadToEnd();
- }
- Read = null;
- Stream = null;
- }
- Response = null;
- Request.Abort();
- Request = null;
- }
- return url;
- }
- catch (Exception ex)
- {
- Error.Write(ref ex);
- return null;
- }
- }
- /// <summary>
- /// 获取服务器响应报文信息
- /// </summary>
- /// <param name="url">请求地址</param>
- /// <returns>HTTP响应报文</returns>
- public string get_All(string url, string cookie = null)
- {
- try
- {
- Request = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(url);
- url = null;
- if (Request != null)
- {
- Request.Method = "GET";
- init_Request(ref Request);
- if (cookie != null) { Request.Headers.Add("Cookie", cookie); }
- using (Response = Request.GetResponse())
- {
- foreach (string name in Response.Headers.AllKeys)
- {
- url += name + "=" + Response.Headers.Get(name) + "; ";
- }
- Stream = Response.GetResponseStream();
- using (Read = new System.IO.StreamReader(Stream, System.Text.Encoding.UTF8))
- {
- url += Read.ReadToEnd();
- }
- Read = null;
- Stream = null;
- }
- Response = null;
- Request.Abort();
- Request = null;
- }
- return url;
- }
- catch (Exception ex)
- {
- Error.Write(ref ex);
- return null;
- }
- }
- /// <summary>
- /// 获取服务器返回信息
- /// </summary>
- /// <param name="url">请求地址</param>
- /// <returns>HTTP Header</returns>
- public string get_Header(string url, string key = "Set-Cookie", string cookie = null)
- {
- try
- {
- Request = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(url);
- url = null;
- if (Request != null)
- {
- Request.Method = "HEAD";
- init_Request(ref Request);
- if (cookie != null) { Request.Headers.Add("Cookie", cookie); }
- using (Response = Request.GetResponse())
- {
- url = Response.Headers.Get(key);
- }
- Response = null;
- Request.Abort();
- Request = null;
- }
- return url;
- }
- catch (Exception ex)
- {
- Error.Write(ref ex);
- return null;
- }
- }
- /// <summary>
- /// 获取匹配信息
- /// </summary>
- /// <param name="src">匹配内容</param>
- /// <returns>正则表达式</returns>
- public string get_Match(string src, string pattern, string substr = null)
- {
- Match = System.Text.RegularExpressions.Regex.Match(src, pattern);
- if (!Match.Success)
- {
- return null;
- }
- if (substr != null)
- {
- return Match.Groups[substr].Value;
- }
- return Match.Value;
- }
- /// <summary>
- /// 发送邮件
- /// </summary>
- /// <param name="ToAddress"></param>
- /// <param name="Subject"></param>
- /// <param name="Value"></param>
- /// <param name="PathArray"></param>
- /// <returns></returns>
- public static bool try_Email(string ToAddress, string Subject, string Value, string[] PathArray = null)
- {
- bool result = false;
- System.Net.Mail.SmtpClient Mail = new System.Net.Mail.SmtpClient("smtp.qq.com", 25);
- Mail.UseDefaultCredentials = true;
- Mail.Credentials = new System.Net.NetworkCredential("feedback01", "z123456");
- Mail.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.Network;
- System.Net.Mail.MailMessage Messages = new System.Net.Mail.MailMessage(new System.Net.Mail.MailAddress("feedback01@qq.com"), new System.Net.Mail.MailAddress(ToAddress));
- Messages.BodyEncoding = System.Text.Encoding.UTF8;
- Messages.SubjectEncoding = System.Text.Encoding.UTF8;
- Messages.Subject = Subject;
- Messages.Body = Value;
- System.Net.Mail.Attachment[] Attachments = null;
- try
- {
- if (PathArray != null)
- {
- Attachments = new System.Net.Mail.Attachment[PathArray.Length];
- for (int i = 0; i < PathArray.Length; i++)
- {
- if (PathArray[i].Length >= 6 && System.IO.File.Exists(PathArray[i]))
- {
- Attachments[i] = new System.Net.Mail.Attachment(PathArray[i]);
- Messages.Attachments.Add(Attachments[i]);
- }
- }
- }
- Mail.Send(Messages);
- result = true;
- }
- catch(Exception ex)
- {
- Error.Write(ref ex);
- result = false;
- }
- if (Attachments != null)
- {
- for (int k = 0; k < Attachments.Length; k++)
- {
- if (Attachments[k] != null)
- {
- Attachments[k].Dispose();
- }
- }
- }
- Messages.Dispose();
- Mail.Dispose();
- return result;
- }
- /// <summary>
- /// 用于ShellExecuteEx
- /// </summary>
- [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public struct SHELLEXECUTEINFO
- {
- public int cbSize;
- public int fMask;
- public int hwnd;
- [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]
- public string lpVerb;
- [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]
- public string lpFile;
- [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]
- public string lpParameters;
- public int lpDirectory;
- public int nShow;
- public int hInstApp;
- public int lpIDList;
- public int lpClass;
- public int hkeyClass;
- public int dwHotKey;
- public int hIcon;
- public int hProcess;
- }
- /// <summary>
- /// ShellExecuteEx
- /// </summary>
- /// <param name="lpExecInfo"></param>
- /// <returns></returns>
- [System.Runtime.InteropServices.DllImport("Shell32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto, SetLastError = true)]
- public static extern bool ShellExecuteEx(ref SHELLEXECUTEINFO lpExecInfo);
- static SHELLEXECUTEINFO ShellInfo;
- /// <summary>
- /// 打开URL
- /// </summary>
- /// <param name="url"></param>
- public static void OpenURL(string url)
- {
- if (ShellInfo.lpFile == null)
- {
- Microsoft.Win32.RegistryKey SubKey = Microsoft.Win32.Registry.ClassesRoot.OpenSubKey(@"HTTP\shell\open\command");
- if (SubKey == null)
- {
- return;
- }
- string Explorer = ((string)SubKey.GetValue(null)).Replace("\"", "");
- int SpaceOffset = -1;
- if ((SpaceOffset = Explorer.LastIndexOf(" ")) != -1)
- {
- Explorer = Explorer.Substring(0, SpaceOffset);
- }
- ShellInfo.cbSize = System.Runtime.InteropServices.Marshal.SizeOf(ShellInfo);
- ShellInfo.lpFile = Explorer;
- ShellInfo.nShow = 1; //SW_SHOWNORMAL
- SubKey.Close();
- SubKey.Dispose();
- }
- ShellInfo.lpParameters = url;
- ShellExecuteEx(ref ShellInfo);
- }
- }
- }
C# HTTP网络常用方法封装的更多相关文章
- java Map常用方法封装
java Map常用方法封装 CreationTime--2018年7月16日15点59分 Author:Marydon 1.准备工作 import java.util.HashMap; impo ...
- 上门洗车APP --- Androidclient开发 之 网络框架封装介绍(二)
上门洗车APP --- Androidclient开发 之 网络框架封装介绍(二) 前几篇博文中给大家介绍了一下APP中的基本业务及开发本项目使用的网络架构: 上门洗车APP --- Androidc ...
- Android OkHttp网络连接封装工具类
package com.lidong.demo.utils; import android.os.Handler; import android.os.Looper; import com.googl ...
- React-Native 之 GD (八)GET 网络请求封装
1.到这里,相信各位对 React-Native 有所熟悉了吧,从现在开始我们要慢慢往实际的方向走,这边就先从网络请求这部分开始,在正式开发中,网络请求一般都单独作为一部分,我们在需要使用的地方只需要 ...
- HttpClient 常用方法封装
简介 在平时写代码中,经常需要对接口进行访问,对于 http 协议 rest 风格的接口请求,大多使用 HttpClient 工具进行编写,想着方便就寻思着把一些常用的方法进行封装,便于平时快速的使用 ...
- flutter dio网络请求封装实现
flutter dio网络请求封装实现 文章友情链接: https://juejin.im/post/6844904098643312648 在Flutter项目中使用网络请求的方式大致可分为两种 ...
- 十. Axios网络请求封装
1. 网络模块的选择 Vue中发送网络请求有非常多的方式,那么在开发中如何选择呢? 选择一:传统的Ajax是基于XMLHttpRequest(XHR) 为什么不用它呢?非常好解释配置和调用方式等非常混 ...
- iOS开发——post异步网络请求封装
IOS中有许多网络请求的函数,同步的,异步的,通过delegate异步回调的. 在做一个项目的时候,上网看了很多别人的例子,发现都没有一个简单的,方便的异步请求的封装例子.我这里要给出的封装代码,是异 ...
- iOS开发-网络-合理封装请求接口
概述 如今大多App都会与网络打交道,作为开发者,合理的对网络后台请求接口进行封装十分重要.本文要介绍的就是一种常见的采用回调函数(方法)的网络接口封装,也算的是一种构架吧. 这个构架主要的idea是 ...
随机推荐
- thinkPhP 引入Smarty模板引擎及配置
做配置: TMPL_ENGINE_TYPE = “Smarty” 给smarty做配置: TMPL_ENGINE_CONFIG = array( 左标记, 右标记, )
- json操作与使用 小白
json使用广可以和很多语言进行互换,把json序列化成字符串,可以反序列化回去 dumps(传入的类型,'ensure_ascii=False') loads网络传输 dump load文件写读 p ...
- 干货 | Elasticsearch、Kibana数据导出实战
1.问题引出 以下两个导出问题来自Elastic中文社区. 问题1.kibana怎么导出查询数据? 问题2:elasticsearch数据导出 就像数据库数据导出一样,elasticsearch可以么 ...
- element-ui表单验证无效解决
最近在项目中遇到了一个需求,需要动态增减表单元素,同时给新增的表单元素增加校验规则. element-ui官网给出了解决方案:点击新增按钮时,向循环渲染的数组中push新的对象,数据驱动视图,通过增加 ...
- 深圳市宁远电子大骆驼DLT3288C-韦根输入接口说明
DLT3288C 板卡上有一组韦根接口,位置如下图所示: 注意:韦根与 RS485 是同时使用一组 Pin 脚,功能二选一.板子默认是 RS485,需要韦 根功能的,需跳电阻. 1.设备控制节点 ...
- HBase 系列(二)—— HBase 系统架构及数据结构
一.基本概念 一个典型的 Hbase Table 表如下: 1.1 Row Key (行键) Row Key 是用来检索记录的主键.想要访问 HBase Table 中的数据,只有以下三种方式: 通过 ...
- 数据读写API——IO流
理清一些概念 1.Java 中的IO是干啥的? IO指的是Input和Output,主要目的是实现数据在存储介质之间的传输.[流:数据流,类比与水流的流动] 2.IO分类 按照操作单元来划分,可以分为 ...
- ajax中的后台返回数据data的意义
- 「每日五分钟,玩转JVM」:线程独占区
前言 如果我们对计算机组成有所了解,那么我们一定会知道在计算机中有一块儿特殊的区域,称之为寄存器,寄存器包括了指令寄存器和程序计数器,这两样位于CPU中,作为程序运行的大脑来控制程序的运行和流转. 而 ...
- odoo项目结构参数属性详解
1.基础文件及目录结构 在认识odoo ORM框架前,先介绍一下odoo中模块目录结构. data:存放模块预制数据i18n:存放国际化文件models:存放模型等py代码security:存放权 ...