Java编程Post数据请求和接收代码详解
这两天在做http服务端请求操作,客户端post数据到服务端后,服务端通过request.getparameter()进行请求,无法读取到数据,搜索了一下发现是因为设置为text/plain模式才导致读取不到数据
urlconn.setrequestproperty("content-type","text/plain; charset=utf-8");
若设置为以下方式,则通过request.getparameter()可以读取到数据
urlconn.setrequestproperty("content-type","application/x-www-form-urlencoded");
enctype的三种编码
form表单中enctype属性可以用来控制对表单数据的发送前的如何进行编码,即在发送到服务器之前,所有字符都会进行编码(空格转换为"+"加号,特殊符号转换为asciihex值)。默认是application/x-www-form-urlencoded。
multipart/form-data用于发送二进制的文件,其他两种类型不能用于发送文件
text/plain用于发送纯文本内容,不对特殊字符进行编码,一般用于email之类的。
application/x-www-form-urlencoded和text/plain的区别简单讲就是一个发送html内容,一个发送纯文本内容
application/x-www-form-urlencoded在发送前编码所有字符(默认)
multipart/form-data不对字符编码。在使用包含文件上传控件的表单时,必须使用该值。
text/plain空格转换为"+"加号,但不对特殊字符编码。
当定义enctype为application/x-www-form-urlencoded时,使用以下方式接收数据
request.getparameter(参数名);
当定义enctype为text/plain时,使用以下方式接收数据
// 接收请求数据 bufferedreader reader = request.getreader(); char[] buf = new char[512]; int len = 0; stringbuffer contentbuffer = new stringbuffer(); while ((len = reader.read(buf)) != -1) { contentbuffer.append(buf, 0, len); } string content = contentbuffer.tostring(); if(content == null){ content = ""; }
post与get
tp请求在所有的编程语言中几乎都是支持的,我们常用的两种为:get,post请求。一般情况下,发送一个get请求都很简单,因为参数直接放在请求的url上,对于post请求,由于其数据是在消息体中发送出去的,所以相对来说要麻烦一点,再涉及到需要发送文件等二进制的数据类型,就更需要更多的处理。
post和get可以通过键值对的方式进行参数传输,服务端通过request.getparameter方式进行请求获取数据。
客户端post数据到服务端,服务端接收处理
public class urlconnection { @suppresswarnings("finally") public static boolean response(string url,string content) { string line = ""; string message = ""; string returndata = ""; boolean poststate = false; bufferedreader bufferedreader = null; try { url urlobject = new url(url); httpurlconnection urlconn = (httpurlconnection) urlobject.openconnection(); urlconn.setdooutput(true); /*设定禁用缓存*/ urlconn.setrequestproperty("pragma:", "no-cache"); urlconn.setrequestproperty("cache-control", "no-cache"); /*维持长连接*/ urlconn.setrequestproperty("connection", "keep-alive"); /*设置字符集*/ urlconn.setrequestproperty("charset", "utf-8"); /*设定输出格式为json*/ urlconn.setrequestproperty("content-type", "application/json;charset=utf-8"); /*设置使用post的方式发送*/ urlconn.setrequestmethod("post"); /*设置不使用缓存*/ urlconn.setusecaches(false); /*设置容许输出*/ urlconn.setdooutput(true); /*设置容许输入*/ urlconn.setdoinput(true); urlconn.connect(); outputstreamwriter outstreamwriter = new outputstreamwriter(urlconn.getoutputstream(),"utf-8"); outstreamwriter.write(content); outstreamwriter.flush(); outstreamwriter.close(); /*若post失败*/ if((urlconn.getresponsecode() != 200)){ returndata = "{\"jsonstrstatus\":0,\"processresults\":[]}"; message = "发送post失败!"+ "code="+urlconn.getresponsecode() + "," + "失败消息:"+ urlconn.getresponsemessage(); // 定义bufferedreader输入流来读取url的响应 inputstream errorstream = urlconn.geterrorstream(); if(errorstream != null) { inputstreamreader inputstreamreader = new inputstreamreader(errorstream,"utf-8"); bufferedreader = new bufferedreader(inputstreamreader); while ((line = bufferedreader.readline()) != null) { message += line; } inputstreamreader.close(); } errorstream.close(); system.out.println("发送失败!错误信息为:"+message); } else{ /*发送成功返回发送成功状态*/ poststate = true; // 定义bufferedreader输入流来读取url的响应 inputstream inputstream = urlconn.getinputstream(); inputstreamreader inputstreamreader = new inputstreamreader(inputstream,"utf-8"); bufferedreader = new bufferedreader(inputstreamreader); while ((line = bufferedreader.readline()) != null) { message += line; } returndata = message; inputstream.close(); inputstreamreader.close(); system.out.println("发送post成功!返回内容为:" + message); } } catch (exception e) { e.printstacktrace(); } finally{ try { if (bufferedreader != null) { bufferedreader.close(); } } catch (ioexception ex) { ex.printstacktrace(); } return poststate; } } /*读取request数据*/ public static string getrequestdata(httpservletrequest request) throws ioexception{ bufferedreader reader = request.getreader(); char[] buf = new char[512]; int len = 0; stringbuffer contentbuffer = new stringbuffer(); while ((len = reader.read(buf)) != -1) { contentbuffer.append(buf, 0, len); } string content = contentbuffer.tostring(); if(content == null){ content = ""; } return content; } }
总结
以上就是本文关于java编程post数据请求和接收代码详解的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站:
java多线程之线程通信生产者消费者模式及等待唤醒机制代码详解
如有不足之处,欢迎留言指出。