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.
文字列の配列リストの配列リストの形式で返される結果がArraylistあります。リストからデータ/オブジェクトを外部ファイルにダンプする必要があります。
Arraylist
ArrayList<ArrayList<ArrayList<String>>>
for (ArrayList<ArrayList<String>> list1 : myReturnedResult) for (ArrayList<String> list2 : list1) for (String s : list2) fout.println(s);
書き込み先のファイルを作成できていれば、これで問題ありません ( fout)。
fout