- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在客户端我使用以下代码:
HashMap<String, String> paramMap = new HashMap<>();
paramMap.put("userId", "1579533296");
paramMap.put("identity", "352225199101195515");
paramMap.put("phoneNum", "15959177178");
HttpClient client = new HttpClient();
PostMethod method = new PostMethod("http://localhost:8088/requestTest");
HttpMethodParams p = new HttpMethodParams();
for (Map.Entry<String, String> entry : paramMap.entrySet()) {
p.setParameter(entry.getKey(), entry.getValue());
}
method.setParams(p);
client.executeMethod(method);
我的服务器端代码是这样的:
@RequestMapping("/requestTest")
public void requestTest(HttpServletRequest request) throws IOException {
String userId = request.getParameter("userId");
String identity= request.getParameter("identity");
String phoneNum= request.getParameter("phoneNum");
System.out.println(userId+identity+phoneNum);
}
但是我得到的userId、identity、phoneNum都是空值,那么如何获取它们的值呢?我知道我可以使用 method.setParameter(key,value) 在客户端设置参数并使用 getParameter(key) 获取参数值,但我只是好奇是否有任何方法可以获取服务器端设置的值通过 HttpMethodParams。
最佳答案
我认为,您对 HttpServletRequest
和 HttpMethodParams
中设置的用户定义参数感到困惑。
根据 JavaDoc - HttpMethodParams
,
This class represents a collection of HTTP protocol parameters applicable to HTTP methods.
这些是特定于该 HTTP 方法 ( see this ) 的预定义参数,与 - HttpServletRequest
参数无关。
请求参数需要设置如图here
您还必须注意,您在客户端使用的所有这些类(HttpClient
、PostMethod
、HttpMethodParams
等)均来自Apache 只是一种生成和调用 HTTP 端点的便捷方法,但最终您在服务器端将拥有一个 HttpServletRequest ,并且该系统不是特定于 Apache HttpClient 的。
因此,您在服务器端所获得的只是使用 getHeaders() 、 getIntHeader() 、 getHeaderNames() 、 getDateHeader() 、 getProtocol() 等提取一个或多个命名 header 。服务器端是标准化的,因此您不应该在那里看到类似 - HttpMethodParams
的内容。
关于java - 如何从 HttpMethodParams 获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46190344/
在客户端我使用以下代码: HashMap paramMap = new HashMap<>(); paramMap.put("userId", "1579533296"); paramMap.put(
我是一名优秀的程序员,十分优秀!