在JSP中为String数组添加值

时间:2015-12-07 13:58:04

标签: java arrays jsp jsp-tags

我试图将另一个值添加到数组中。

<%= ProductManager.getAddItems(new String[] {((String)pageContext.getAttribute("skuId"))}, (Order)pageContext.getAttribute("order"), request,response) %>

我想将pageContext.getAttribute(&#34; qty&#34;)添加到上面的String数组中,但似乎无法让它工作。谷歌的主题是死亡而没有找到我试图完成的任何例子......任何建议都将受到青睐!

1 个答案:

答案 0 :(得分:1)

这样的东西应该可以工作(虽然还没有在控制台中尝试过)

<%= ProductManager.getAddItems(new String[] {((String)pageContext.getAttribute("skuId")), ((String)pageContext.getAttribute("qty"))}, (Order)pageContext.getAttribute("order"), request,response) %>