Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Servlet 上下文中有一个数组,我想从不同的 servlet 添加和检索该数组的元素。
我怎样才能做到这一点 ?
我这样做是为了获取整个列表:
out.println(getServletContext().getAttribute("list"));
list 是数组的名称,那么我该怎么做才能将元素添加到该列表中,以及获取索引为 0 的元素?
您发布的代码将数组打印到编写器out。要获取引用数组的变量,只需执行
out
String[] array = (String[]) getServletContext().getAttribute("list");
(当然,假设数组是一个字符串数组)。