如何以 PHP 和 Rails 的风格在 Java 中获取数组的请求参数?
情况如下:
page.jsp?var[0]=foo&var[1]=bar
在Java中如何在数组中检索this?
以下内容:
page.jsp?var=foo&var=bar
我知道可以使用 request.getParameterValues("var") 检索
上述内容,但有任何解决方案吗?
The situation is as follows:
page.jsp?var[0]=foo&var[1]=bar
How can this be retrieved in an array in Java?
The following:
page.jsp?var=foo&var=bar
I know can be retrieved using request.getParameterValues("var")
Any solutions for the above though?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
希望这可以帮助。
Hope this helps.
这将为您提供一个带有 K、V 对以及一组键和一组值的 Map 调用 m。 您几乎可以像数组一样迭代这些集合。 您还可以使用 toArray 将其转换为数组。
That will get you a Map call m with K,V pairs and both a set of keys and set of values. You can iterate those sets almost like an array. You can also use toArray to turn it into an array.