小服务程序。如果参数的键不唯一,如何获取参数?
在 servlet 中,我获取 POST 参数,其中键不唯一。像这样
id = 12, id = 13, id = 14
所以我不能使用 getParameterMap() 来获取这个参数(因为 HashMap 只包含唯一的键)。解决此问题并从 POST 查询中的所有非唯一参数获取值的最佳方法是什么?
谢谢!
UPD。我无法编辑请求参数(我从其他应用程序检索此参数)
In servlet I get POST parameters where keys are not unique. Like this
id = 12, id = 13, id = 14
So I can't use getParameterMap()
to get this parameters (because HashMap contain only unique keys). What is the best way to solve this problem and get values from all non-unique parameters from POST query?
Thanks!
UPD. I cant edit request parameters (I retrieve this parameters from other app)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当请求中存在多个同名参数时,getParameterValues() 方法特别有用。 getParameterValues() 方法返回参数 paramName 的一个或多个值。值以字符串数组的形式返回。如果请求中参数 paramName 有多个值,则每个值都会在数组中返回。
}
The method getParameterValues() is especially usefull when there are multiple parameters with the same name in a request. The getParameterValues() method returns the value or values of the parameter paramName. The values are returned in the form of an array of strings. If the parameter paramName has mulitple values in the request, then each of those values is returned in the array.
}