码迷,mamicode.com
首页 > Windows程序 > 详细

API开发实践(二) 接受url请求

时间:2017-05-21 12:55:09      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:protect   文件   java   gis   nbsp   local   ring   response   数值   

先简单理解GET请求与POST请求的区别

HTTP请求中POST与GET的区别

 

在浏览器地址栏输入

http://服务器地址:服务器端口/文件路径

即可访问目的文件或服务

 

如果带有参数就以

?参数名=参数值[&参数名=参数值].*

的形式添加到请求中,再在服务器中用request.getParameter()方法取出。

 

代码:url:  http://localhost:8080/APITest/getMap.java?shipperCode="*"&logisticCode="*"

1 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
2         // TODO Auto-generated method stub
3         String shipperCode = request.getParameter("ShipperCode");
4         String logisticCode = request.getParameter("LogisticCode");
5         
6     }

改写了POSTt方法,

API开发实践(二) 接受url请求

标签:protect   文件   java   gis   nbsp   local   ring   response   数值   

原文地址:http://www.cnblogs.com/cxy2016/p/6884264.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!