android笔记之--向网络发送GET/POST请求参数

本文详细介绍了如何使用GET和POST方法发送HTTP请求,包括通过Java HttpURLConnection和HttpClient实现的具体步骤。通过示例展示了请求头、请求体及参数编码等关键要素。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

使用GET方法发送请求

private static boolean sendGETRequest (String path, Map<String, String> params) throws Exception{ //发送地http://192.168.100.91:8080/videoService/login?username=abc&password=123 // StringBuilder是用来组拼请求地址和参数 StringBuilder sb = new StringBuilder(); sb.append(path).append("?"); if(params!=null &¶ms.size()!=0){ for (Map.Entry<String, String> entry : params.entrySet()) { //如果请求参数中有中文,需要进行URLEncoder编码 sb.append(entry.getKey()).append("=").append(URLEncoder.encode(entry.getValue(), "utf-8")); sb.append("&"); } sb.deleteCharAt(sb.length()-1); } URL url = new URL(sb.toString()); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setConnectTimeout(5000); conn.setRequestMethod("GET"); if(conn.getResponseCode()==200){ return true; } return false; }

使用POST方法发送请求

我们先从IE浏览器中使用POST方法发送一次:(下面内容可以用HttpWatch看到)

POST /videoService/login HTTP/1.1

Accept: image/jpeg, application/x-ms-application, image/gif, application/xaml+xml, image/pjpeg, application/x-ms-xbap, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/QVOD, application/QVOD, */*

Referer: http://192.168.100.91:8080/videoService/login.jsp

Accept-Language: zh-CN,en;q=0.5

User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0)

Content-Type: application/x-www-form-urlencoded//POST请求这个一定要设置

Accept-Encoding: gzip, deflate

Host: 192.168.100.91:8080

Content-Length: 26//还有发送内容长度也要设置

Connection: Keep-Alive

Cache-Control: no-cache

Cookie: JSESSIONID=7E1435CB8A071D07A430453250348C41

username=asd&password=1234//这里是请求体部分,一共26个字节,与Content-Length长度一样

private static boolean sendPOSTRequest(String path, Map<String, String> params) throws Exception{ // StringBuilder是用来组拼请求参数 StringBuilder sb = new StringBuilder(); if(params!=null &¶ms.size()!=0){ for (Map.Entry<String, String> entry : params.entrySet()) { sb.append(entry.getKey()).append("=").append(URLEncoder.encode(entry.getValue(), "utf-8")); sb.append("&"); } sb.deleteCharAt(sb.length()-1); } // entity为请求体部分内容 //如果有中文则以UTF-8编码为username=%E4%B8%AD%E5%9B%BD&password=123 byte[] entity = sb.toString().getBytes(); URL url = new URL(path); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setConnectTimeout(5000); conn.setRequestMethod("POST"); //要向外输出数据,要设置这个 conn.setDoOutput(true); conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); conn.setRequestProperty("Content-Length", entity.length+""); OutputStream os = conn.getOutputStream(); //以POST方式发送请求体 os.write(entity); if(conn.getResponseCode()==200){ return true; } return false; }

以Android集成的HttpClient框架来发送

private static boolean sendPOSTRequestHttpClient(String path, Map<String, String> params) throws Exception{ //封装请求参数 List<NameValuePair> pair = new ArrayList<NameValuePair>(); if(params!=null&& !params.isEmpty()){ for(Map.Entry<String, String> entry:params.entrySet()){ pair.add(new BasicNameValuePair(entry.getKey(), entry.getValue())); } } //把请求参数变成请求体部分 UrlEncodedFormEntity uee = new UrlEncodedFormEntity(pair, "utf-8"); //使用HttpPost对象设置发送的URL路径 HttpPost post = new HttpPost(path); //发送请求体 post.setEntity(uee); //创建一个浏览器对象,以把POST对象向服务器发送,并返回响应消息 DefaultHttpClient dhc = new DefaultHttpClient(); HttpResponse response = dhc.execute(post); if(response.getStatusLine().getStatusCode()==200){ Log.i("http", "httpclient"); return true; } return false; }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值