如何通过ArrayList将所有html输入值以相同的名称提供给servlet

时间:2017-09-13 17:07:23

标签: java html jsp servlets arraylist

这是HTML

<input type="hidden" value="Brand" name="labelValue" />
<input type="hidden" value="model" name="labelValue" />

这是Servlet部分

String values=request.getParameter("labelValue");

如何将其转换为ArrayList并且输入计数正在改变

1 个答案:

答案 0 :(得分:2)

// Returns an array of String objects containing all of the values the given request parameter has, or null if the parameter does not exist.
String[] values=req.getParameterValues("labelValue");

// Convert String array to arrayList. You can assign this to variable and use.
new ArrayList<String>(Arrays.asList(values));