当前位置:编程学习 > JSP >>

J2ME HTTP POST

1.通过POST方法,发送数据至HTTP Server
2.大家通常忽略Content-Type和Content-Length
......
conn.setRequestMethod(HttpConnection.POST);
conn.setRequestProperty("User-Agent","Profile/MIDP-1.0 Configuration/CLDC-1.0" );
conn.setRequestProperty("Content-Language", "en-US" );
postmsg = request.getBytes();
conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
conn.setRequestProperty("Content-Length",Integer.toString( postmsg != null?postmsg.length : 0 ) );
out = conn.openOutputStream();
out.write(postmsg);
......

补充:Jsp教程,J2ME开发 
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,