小服务程序。如果参数的键不唯一,如何获取参数?

发布于 2025-01-05 22:34:25 字数 243 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灼痛 2025-01-12 22:34:26

当请求中存在多个同名参数时,getParameterValues() 方法特别有用。 getParameterValues() 方法返回参数 paramName 的一个或多个值。值以字符串数组的形式返回。如果请求中参数 paramName 有多个值,则每个值都会在数组中返回。

public abstract interface ServletRequest
{
    public abstract String[] getParameterValues(String paramString);
....

}

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.

public abstract interface ServletRequest
{
    public abstract String[] getParameterValues(String paramString);
....

}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文