国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

請求網(wǎng)址并解析返回的html

2019-11-18 17:08:39
字體:
供稿:網(wǎng)友

目的,把遠程服務(wù)器傳回的Html,解析到類里面,為GridView等提供數(shù)據(jù)源
1 、向遠程服務(wù)器Post數(shù)據(jù)
public int PostData(string url, string data, out string info)
        {

            info = "";
            CookieContainer cc = new CookieContainer();
            HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;
            request.CookieContainer = cc;
            request.Method = "POST";
            request.ContentType = "application/x-www-form-urlencoded";
            Stream requestStream = request.GetRequestStream();
            byte[] byteArray = Encoding.UTF8.GetBytes(data);
            requestStream.Write(byteArray, 0, byteArray.Length);
            requestStream.Close();
            HttpWebResponse response = request.GetResponse() as HttpWebResponse;
            Uri responseUri = response.ResponseUri;
            Stream receiveStream = response.GetResponseStream();
            Encoding encode = System.Text.Encoding.GetEncoding("utf-8");
            StreamReader readStream = new StreamReader(receiveStream, encode);
            string result = readStream.ReadToEnd();
            info = result;
            return 0;

        }2、解析返回的html,有省略
 public ClassInfo[] GetClass(string html)
        {

            ArrayList ar = new ArrayList();
            ArrayList arr = new ArrayList();
            string table = "";
            Regex regtable = new Regex(@"(?<=<table.*>).*?(?=</table>)", RegexOptions.Singleline);
            Match ma = regtable.Match(html);
            while (ma.Success)
            {
                if (ma.Value.Trim() != "")
                {
                    arr.Add(HttpUtility.HtmlDecode(ma.Value));
                }
                ma = ma.NextMatch();
            }
            for (int i = 0; i < arr.Count; i++)
            {
                table = arr[i].ToString() + table;
            }


            Regex reg = new Regex(@"(?<=<.*?>).*?(?=<.*?>)", RegexOptions.Singleline);
            Match m = reg.Match(table);


            while (m.Success)
            {
                if (m.Value.Trim() != "")
                {

                    ar.Add(HttpUtility.HtmlDecode(m.Value));
                }
                m = m.NextMatch();
            }


           ClassInfo[] ci = new ClassInfo[classno];
            for (int i = 0; i < classno; i++)
            {
                ci[i] = new ClassInfo();
                ci[i].RegisterDate = (ar[i * 8 + 0]).ToString();

                ci[i].LoginDate = (ar[i * 8 + 1]).ToString();
                ci[i].LogoutDate = (ar[i * 8 + 2]).ToString();
                ci[i].UseMin = ar[i * 8 + 3].ToString();
                ci[i].ClassName = ar[i * 8 + 5].ToString();
                ci[i].ClassType = ar[i * 8 + 6].ToString();
                ci[i].Percent = ar[i * 8 + 7].ToString();

            }

 

            return ci;


        }
3、定義ClassInfo類(課程類),用CodeSmith生成
 public class ClassInfo
    {
        Member Variables#region Member Variables


        PRotected string _loginDate;
        protected string _logoutDate;
        protected string _registerDate;
        protected string _useMin;
        protected string _className;
        protected string _classType;
        protected string _percent;
        //protected string _nouse;
        #endregion

        Constructors#region Constructors

        public ClassInfo() { }

        public ClassInfo(string loginDate, string logoutDate, string registerDate, string useMin, string className, string classType, string percent)
        {
            this._loginDate = loginDate;
            this._logoutDate = logoutDate;
            this._registerDate = registerDate;
            this._useMin = useMin;
            this._className = className;
            this._classType = classType;
            this._percent = percent;
        }

        #endregion

        Public Properties#region Public Properties
        //        public string NoUse
        //        {
        //            get{return _nouse;}
        //            set{ _nouse= value;}
        //        }

 

        public string LoginDate
        {
            get { return _loginDate; }
            set { _loginDate = value; }
        }

        public string LogoutDate
        {
            get { return _logoutDate; }
            set { _logoutDate = value; }
        }

        public string RegisterDate
        {
            get { return _registerDate; }
            set { _registerDate = value; }
        }

        public string UseMin
        {
            get { return _useMin; }
            set { _useMin = value; }
        }

        public string ClassName
        {
            get { return _className; }
            set
            {
                if (value != null && value.Length > 50)
                    throw new ArgumentOutOfRangeException("Invalid value for ClassName", value, value.ToString());
                _className = value;
            }
        }

        public string ClassType
        {
            get { return _classType; }
            set
            {
                if (value != null && value.Length > 50)
                    throw new ArgumentOutOfRangeException("Invalid value for ClassType", value, value.ToString());
                _classType = value;
            }
        }

        public string Percent
        {
            get { return _percent; }
            set
            {
                if (value != null && value.Length > 50)
                    throw new ArgumentOutOfRangeException("Invalid value for Percent", value, value.ToString());
                _percent = value;
            }
        }

        #endregion
    }

http://bluewater.VEVb.com/archive/2006/06/19/429720.html


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 义马市| 珠海市| 旌德县| 鄂州市| 达日县| 顺义区| 海口市| 华池县| 蓬溪县| 三原县| 凌源市| 高邮市| 富阳市| 丹阳市| 宁陕县| 阿荣旗| 新竹市| 固始县| 丰县| 孟村| 徐州市| 新邵县| 门源| 嘉善县| 兖州市| 定安县| 广宁县| 左云县| 松阳县| 新昌县| 安徽省| 临猗县| 玉门市| 邵东县| 九龙坡区| 阳城县| 孙吴县| 金秀| 中牟县| 新营市| 宁陵县|