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.
サーブレット コンテキストに配列があり、別のサーブレットからこの配列の要素を追加および取得したいと考えています。
これどうやってするの ?
リスト全体を取得するためにこれを行います:
out.println(getServletContext().getAttribute("list"));
list は配列の名前です。そのリストに要素を追加し、インデックス 0 の要素を取得するにはどうすればよいでしょうか?
投稿したコードは、配列をoutライターに出力します。配列を参照する変数を取得するには、次のようにします
out
String[] array = (String[]) getServletContext().getAttribute("list");
(もちろん、配列が文字列の配列であると仮定します)。