目的,把远程服务器传回的Html,解析到类里面,为GridView等提供数据源 info = “”; }2、解析返回的html,有省略 ArrayList ar = new ArrayList(); ar.Add(HttpUtility.HtmlDecode(m.Value)); ci[i].LoginDate = (ar[i * 8 + 1]).ToString(); } return ci; Constructors#region Constructors public ClassInfo() { } public ClassInfo(string loginDate, string logoutDate, string registerDate, string useMin, string className, string classType, string percent) #endregion Public Properties#region Public Properties public string LoginDate public string LogoutDate public string RegisterDate public string UseMin public string ClassName public string ClassType public string Percent #endregion
1 、向远程服务器Post数据
public int PostData(string url, string data, out string 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;
public ClassInfo[] GetClass(string html)
{
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() != “”)
{
}
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].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();
}
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
{
this._loginDate = loginDate;
this._logoutDate = logoutDate;
this._registerDate = registerDate;
this._useMin = useMin;
this._className = className;
this._classType = classType;
this._percent = percent;
}
// public string NoUse
// {
// get{return _nouse;}
// set{ _nouse= value;}
// }
{
get { return _loginDate; }
set { _loginDate = value; }
}
{
get { return _logoutDate; }
set { _logoutDate = value; }
}
{
get { return _registerDate; }
set { _registerDate = value; }
}
{
get { return _useMin; }
set { _useMin = value; }
}
{
get { return _className; }
set
{
if (value != null && value.Length > 50)
throw new ArgumentOutOfRangeException(“Invalid value for ClassName”, value, value.ToString());
_className = value;
}
}
{
get { return _classType; }
set
{
if (value != null && value.Length > 50)
throw new ArgumentOutOfRangeException(“Invalid value for ClassType”, value, value.ToString());
_classType = value;
}
}
{
get { return _percent; }
set
{
if (value != null && value.Length > 50)
throw new ArgumentOutOfRangeException(“Invalid value for Percent”, value, value.ToString());
_percent = value;
}
}
}
请求网址并解析返回的html_asp.net技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 请求网址并解析返回的html_asp.net技巧
相关推荐
-      对.net framework 反射的反思_asp.net技巧
-      .net3.5和vs2008中的asp.net ajax_asp.net技巧
-      使用asp.net ajax框架扩展html map控件_asp.net技巧
-      asp.net应用程序资源访问安全模型_asp.net技巧
-      photoshop初学者轻松绘制螺旋漩涡特效_photoshop教程
-      photoshop通道结合图层模式抠狗尾巴草_photoshop教程
-      web.config详解+asp.net优化_asp.net技巧
-      asp.net中多彩下拉框的实现_asp.net技巧