java-servlet request.getParameterValues()
我有一个数组,其中包含我作为参数传递的其他数组。我正在使用 request.getParameterValues() 来获取参数,但问题只是原始数组以数组格式出现。数组内部的数组正在转换为字符串。还有其他方法发送和接收多维数组吗?
I have an array which holds other arrays I am passing as a parameter. I am using request.getParameterValues()
to get the parameter but the problem is only the original array is coming in the array format. The arrays inside the array are being converted to string. Is there another way to send and receive multi dimensional arrays?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 GET 方法,则必须构建如下查询:
如果您使用 POST 方法,则必须使用
application/x-www-form-urlencoded
内容类型,或者仅在 HTML 表单中使用 Post 方法。例如:那么在这两种情况下,在您的 servlet 中:
If you are using GET method you must build query like this:
If you are using POST method you must use
application/x-www-form-urlencoded
Content Type or just use Post method in your HTML form. For example:Then in both cases in your servlet:
如果内部数组以逗号(,)分隔,则尝试以下
动态代码,您可以执行此操作并使用不同的
String[]
来存储数据或使用ArrayList
of字符串[]
if the inner arrays are coming as comma(,) separated then try the below code
Dynamically, you could do this and use different
String[]
to store the data or use anArrayList
ofString[]