我是一个 JAVA 初学者。如何使用 while 循环创建多维对象/数组列表(如下所示)。
(我将使用 JAVA Scanner 读取文本文件,并且需要将数据加载到具有以下格式的数组列表中)
Object[][] data = {
{"Text1-Line1", "Text2-Line1","Text3-Line1","Text4-Line1","Text5-Line1"},
{"Text1-Line2", "Text2-Line2","Text3-Line2","Text4-Line2","Text5-Line2"},
{"Text1-Line3", "Text2-Line3","Text3-Line3","Text4-Line3","Text5-Line3"},
};