前面记录过一篇关于http通信,发送数据的文章:http://www.cnblogs.com/hyyq/p/7089040.html,今天要记录的是如何通过http模拟表单提交数据。
一、通过GET请求方式提交:最简单的一种方式
直接在链接后面跟上要提交的数据即可,比如: http://yychf.55555.io/get.do?username=yyc&password=yychf,通过http直接发送。然后在服务器端可以通过request.getParameter()方法来获得参数值。如要获得参数username的值可以通过request.getParameter("username");
二、通过POST请求方式提交:发送更多数据
post请求方式参数比较隐蔽,数据的传输在请求的数据体中。一般来说,我们用POST提交表单会出现在前端html代码中,通过submit将数据提交到表单地址中,现在需要通过纯java代码实现表单的提交。其实原理也很简单,主要需要注意以下两点:
- 作为表单提交数据,需要设置它的请求头,主要是Content-Type的值, 这里的值是application/x-www-form-urlencoded;
- 需要将参数转换成如key1=urlencode(value1)&key2=urlencode(value2)的形式,这里的urlencode是指将参数值用urlencode编码,其实就是是将表单字段和经过编码的字段值经过组合以数据体的方式做了参数传递。
下面是具体实现代码:
/**
* 发起http请求
* 发送参数(仿表单提交效果):
* 基本思路:1.请求头“Content-Type”的值为“application/x-www-form-urlencoded”
* 2.将参数拼接成key=value形式的字符串post提交
* 注意:key=value中key,value即参数名、值不能有中文字符,
* 所以发送的数据就是key1=urlencode(value1)&key2=urlencode(value2)&...形式的字符串
* @param urlString
* @param formProperties
* @return
* @throws Exception
*/
public static byte[] httpRequestPostForm(String urlString,Properties formProperties) throws Exception{ //设置http请求头信息
Properties requestProperties = new Properties();
requestProperties.setProperty("Content-Type", "application/x-www-form-urlencoded"); //将需要发送的参数拼接成key1=urlencode(value1)&key2=urlencode(value2)&...形式的字符串
StringBuilder sb = new StringBuilder();
if ((formProperties != null) && (formProperties.size() > 0)) {
for (Map.Entry<Object, Object> entry : formProperties.entrySet()) {
String key = String.valueOf(entry.getKey());
String value = String.valueOf(entry.getValue());
sb.append(key);
sb.append("=");
sb.append(encode(value));//urlencode编码
sb.append("&");
}
} String str = sb.toString();
str = str.substring(0, (str.length() - 1)); // 截掉末尾字符“&” return requestPost(urlString, str.getBytes("UTF-8"), requestProperties);
} /**
* 发送http请求,并获取返回的数据
* @param urlString
* @param requestData
* @param requestProperties
* @return
* @throws Exception
*/
private static byte[] requestPost(String urlString, byte[] requestData, Properties requestProperties)
throws Exception {
byte[] responseData = null;
HttpURLConnection con = null; try {
URL url = new URL(urlString);
con = (HttpURLConnection) url.openConnection(); if ((requestProperties != null) && (requestProperties.size() > 0)) {//设置请求头信息
for (Map.Entry<Object, Object> entry : requestProperties
.entrySet()) {
String key = String.valueOf(entry.getKey());
String value = String.valueOf(entry.getValue());
con.setRequestProperty(key, value);
}
} con.setRequestMethod("POST"); // 置为POST方法 con.setDoInput(true); // 开启输入流
con.setDoOutput(true); // 开启输出流 // 如果请求数据不为空,输出该数据。
if (requestData != null) {
DataOutputStream dos = new DataOutputStream(con
.getOutputStream());
dos.write(requestData);
dos.flush();
dos.close();
} int length = con.getContentLength();
// 如果回复消息长度不为-1,读取该消息。
if (length != -1) {
DataInputStream dis = new DataInputStream(con.getInputStream());
responseData = new byte[length];
dis.readFully(responseData);
dis.close();
}
} catch (Exception e) {
throw e;
} finally {
if (con != null) {
con.disconnect();
}
} return responseData;
} /**
* url解码
*
* @param url
* @return 解码后的字符串,当异常时返回原始字符串。
*/
private static String decode(String url) {
try {
return URLDecoder.decode(url, "UTF-8");
} catch (UnsupportedEncodingException ex) {
return url;
}
} /**
* url编码
*
* @param url
* @return 编码后的字符串,当异常时返回原始字符串。
*/
private static String encode(String url) {
try {
return URLEncoder.encode(url, "UTF-8");
} catch (UnsupportedEncodingException ex) {
return url;
}
}
发送数据前,需要将数据放入Properties对象中再传入,这是java.util包中的一个工具类,本来主要作用是读取java中以.properties结尾的配置文件,关于这个推荐http://www.cnblogs.com/hyyq/p/7399525.html。当然,这里完全也可以用Map集合来实现。
发送数据后,服务端可以通过request.getParameter()方法来获得参数值,也可以通过request.getParameterMap()来获取,它返回的是一个Map<String,String[]>类型的值,因为我们知道表单有 如性别之类的属性是有两个值的。
小结:通过http模拟表单提交数据,其实和普通的数据提交也是换汤不换药。
参考:http://blog.163.com/xing_mu_1/blog/static/6614290201031310207158/