标签:protect 文件 java gis nbsp local ring response 数值
先简单理解GET请求与POST请求的区别
在浏览器地址栏输入
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方法,
标签:protect 文件 java gis nbsp local ring response 数值
原文地址:http://www.cnblogs.com/cxy2016/p/6884264.html