java程序中怎样可以知道从页面提交的是用post还是get

 我来答
128兆
推荐于2016-11-27 · TA获得超过478个赞
知道小有建树答主
回答量:158
采纳率:100%
帮助的人:145万
展开全部
get提交是用显式提交 可以看到传递的参数 post提交时隐式提交 看不到参数 所以你只需要看提交后网页的链接 有没有 xxx=xxx就可以判断了 有xxx=xxx的话 就是get提交 没有的话 就是POST提交
rxaaud
2011-03-08
知道答主
回答量:34
采纳率:0%
帮助的人:0
展开全部
pclient方便,效率又高,下面是post方式提交登录参数的代码:

public class FormLoginDemo
{
static final String LOGON_SITE = "developer.java.sun.com";
static final int LOGON_PORT = 80;

public FormLoginDemo() {
super();
}

public static void main(String[] args) throws Exception {

HttpClient client = new HttpClient();
client.getHostConfiguration().setHost(LOGON_SITE, LOGON_PORT, "http");
PostMethod authpost = new PostMethod("/servlet/SessionServlet");
// 准备登录参数
NameValuePair action = new NameValuePair("action", "login");
NameValuePair url = new NameValuePair("url", "/index.html");
NameValuePair userid = new NameValuePair("UserId", "userid");
NameValuePair password = new NameValuePair("Password", "password");
authpost.setRequestBody(
new NameValuePair[] );
// 执行Post请求
client.executeMethod(authpost);
// 打印状态码
System.out.println("Login form post: " + authpost.getStatusLine().toString());
// 释放连接
authpost.releaseConnection();
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式