単一の応答で複数のオブジェクトを ObjectOutputStream に書き込む方法 (オブジェクトは固定されておらず、オブジェクトはユーザーの要求に応じて動的に作成されています)。これには Arraylist または Vector を使用できますか、サンプル プログラムを教えてください。
TexxtViews text=new TexxtViews(2, -2, 2, "WELCOME TO CCS");//First Object
ButtonView button=new ButtonView(-2, 2, "OK");//Second Object
ArrayList array=new ArrayList();
array.add(text);
array.add(button);
OutputStream out = resp.getOutputStream();
ObjectOutputStream outSt = new ObjectOutputStream(out);
outSt.writeObject(array);
このコードを試した