java-servlet request.getParameterValues()

发布于 2024-10-31 12:51:50 字数 122 浏览 1 评论 0原文

我有一个数组,其中包含我作为参数传递的其他数组。我正在使用 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 技术交流群。

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

发布评论

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

评论(2

折戟 2024-11-07 12:51:50

如果您使用 GET 方法,则必须构建如下查询:

http://localhost:8080/myApp/myServlet/?habits=Movies&habits=Writing&habits=Singing

如果您使用 POST 方法,则必须使用 application/x-www-form-urlencoded 内容类型,或者仅在 HTML 表单中使用 Post 方法。例如:

 <form method="post">
 Habits :
    <input type="checkbox" name="habits" value="Reading">Reading
    <input type="checkbox" name="habits" value="Movies">Movies
    <input type="checkbox" name="habits" value="Writing">Writing
    <input type="checkbox" name="habits" value="Singing">Singing
    <input type="submit" value="Submit">
 </form>

那么在这两种情况下,在您的 servlet 中:

String[] outerArray=request.getParameterValues('habits');
your array will be filled with separated values:

//["Writing","Singing"]

If you are using GET method you must build query like this:

http://localhost:8080/myApp/myServlet/?habits=Movies&habits=Writing&habits=Singing

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:

 <form method="post">
 Habits :
    <input type="checkbox" name="habits" value="Reading">Reading
    <input type="checkbox" name="habits" value="Movies">Movies
    <input type="checkbox" name="habits" value="Writing">Writing
    <input type="checkbox" name="habits" value="Singing">Singing
    <input type="submit" value="Submit">
 </form>

Then in both cases in your servlet:

String[] outerArray=request.getParameterValues('habits');
your array will be filled with separated values:

//["Writing","Singing"]
指尖上得阳光 2024-11-07 12:51:50

如果内部数组以逗号(,)分隔,则尝试以下

String[] outerArray=request.getParameterValues('parameterName');

String[] innerArray=outerArray[0].split(",");

动态代码,您可以执行此操作并使用不同的 String[] 来存储数据或使用 ArrayList of 字符串[]

for (int i = 0; i < outerArray.length; i++) {

           String[] innerArray=outerArray[i].split(",");         
        }

if the inner arrays are coming as comma(,) separated then try the below code

String[] outerArray=request.getParameterValues('parameterName');

String[] innerArray=outerArray[0].split(",");

Dynamically, you could do this and use different String[] to store the data or use an ArrayList of String[]

for (int i = 0; i < outerArray.length; i++) {

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