在JSP中for循环期间是否可以在cookie中存储值的数组?

时间:2015-08-07 18:27:02

标签: jsp

是否有可能在for循环期间在cookie中存储值数组。如果是,那么如何以及如果不能如何排序此问题以将数组元素存储在cookie中?

以下是我正在尝试的代码:

<%
    String check[] = request.getParameterValues("chk");
    String a[] = " ";
    if (check != null) {
%>
<h4 style="color:white">
<%
    for (int i = 0; i < check.length; i++) {
        out.println(check[i]);
        a[i] = check[i];
    }
    Cookie c1 = new Cookie(chks, check[i]);
    response.addCookie(c1);
}
%>
</h4>

<a href="basket.jsp" style="text-decoration: none;color:white">proceed</a>

0 个答案:

没有答案