zoukankan
html css js c++ java
使用 HttpRequest Get和Post调用其他页面
昨天选课,虽然有一个排队系统。但是排队系统实在不怎么的啊。插队的有那么的多。有人做了插队工具下了一个看看,
那是一个使用javascript实现的系统,整个只有一个页面。你可以在这里下载:
/Files/lulu/xk.rar
。它使用xmlHttpRequest向服务器发送请求。
js不太熟悉,发现HttpRequest功能差不多,用它试试啦。
但是不知道提交数据怎么组织,革命尚未成功但是还是学到了点东西,就在这了写下来了:
//
Get请求方式
private
string
RequestGet(
string
Url)
{
string
PageStr
=
string
.Empty;
//
用于存放还回的html
Uri url
=
new
Uri(Url);
//
Uri类 提供统一资源标识符 (URI) 的对象表示形式和对 URI 各部分的轻松访问。就是处理url地址
try
{
HttpWebRequest httprequest
=
(HttpWebRequest)WebRequest.Create(url);
//
根据url地址创建HTTpWebRequest对象
参数设置
#region
参数设置
httprequest.Method
=
"
get
"
;
//
---------------------------------------------设定一些参数(不必要可以)
//
httprequest.KeepAlive = false;
//
持久连接设置为false
//
httprequest.ProtocolVersion = HttpVersion.Version11;
//
网络协议的版本
//
httprequest.Proxy = WebProxy.GetDefaultProxy();
//
服务器代理
//
httprequest.ContentType = "application/x-www-form-urlencoded";
//
http 头
//
httprequest.AllowAutoRedirect = true;
//
httprequest.MaximumAutomaticRedirections = 10;
//
httprequest.Timeout = 30000;
//
设定超时十秒(毫秒)
//
httprequest.UserAgent = "mozilla/4.0 (compatible; msie 6.0; windows nt 5.1)";
//
浏览器
//
=================================================
#endregion
HttpWebResponse response
=
(HttpWebResponse)httprequest.GetResponse();
//
使用HttpWebResponse获取请求的还回值
Stream steam
=
response.GetResponseStream();
//
从还回对象中获取数据流
StreamReader reader
=
new
StreamReader(steam, Encoding.GetEncoding(
"
gb2312
"
));
//
读取数据Encoding.GetEncoding("gb2312")指编码是gb2312,不让中文会乱码的
PageStr
=
reader.ReadToEnd();
reader.Close();
}
catch
(Exception e)
{
PageStr
+=
e.Message;
}
return
PageStr;
}
//Post请求方式,于Get的方式写法相似,所以解释就些少一点了
private
string
RequestPost(
string
Url,
string
Context)
//
两个参数分别是Url地址和Post过去的数据
{
string
PageStr
=
string
.Empty;
Uri url
=
new
Uri(Url);
byte
[] reqbytes
=
Encoding.ASCII.GetBytes(Context);
try
{
HttpWebRequest req
=
(HttpWebRequest)WebRequest.Create(url);
req.Method
=
"
post
"
;
req.ContentType
=
"
application/x-www-form-urlencoded
"
;
req.ContentLength
=
reqbytes.Length;
Stream stm
=
req.GetRequestStream();
stm.Write(reqbytes,
0
, reqbytes.Length);
stm.Close();
HttpWebResponse wr
=
(HttpWebResponse)req.GetResponse();
Stream stream
=
wr.GetResponseStream();
StreamReader srd
=
new
StreamReader(stream,Encoding.GetEncoding(
"
gb2312
"
));
PageStr
+=
srd.ReadToEnd();
stream.Close();
srd.Close();
}
catch
(Exception e)
{
PageStr
+=
e.Message;
}
return
PageStr;
}
查看全文
相关阅读:
完结篇《产品在路上》
产品经理的七个层次
互联网产品的交互设计
互联网产品的用户体验
用户体验设计 UED (下)
用户体验设计 UED (上)
【100Days of 100 line Code】1 day
leetcode 392.判断子序列(Java 贪心)
leetcode 605.种花问题(java 贪心)
leetcode 122.买卖股票的最佳时机||(Java 贪心)
原文地址:https://www.cnblogs.com/xxaxx/p/2785547.html
最新文章
IntelliJ IDEA编译项目出现:OutOfMemoryError: insufficient memory报错解决方法
MyBatisCodeHelper-Pro插件破解版[2.8.2]
url编码与解码
Python小结
Access restriction: The type TaskTopicResolver is not accessible due to restrict--编译Hadoop时有个SecurityUtils有错误,处理方法
SSH无密码
acwing_800_数组元素的目标和
poj_1151
实验二 数据库和表的操作
算法笔记p322
热门文章
BFS的学习
PAT_A1103
PAT_A1051
栈_CodeUp_1918
PAT_A1054
PAT_A1100
产品经理的主要职责
qq登录界面
表单元件和标记元件及其属性设置
第一节:Axure面板学习及简单操作
Copyright © 2011-2022 走看看