我有这样的结构:
List< List< tracciato >> dataTot;
带
public class tracciato {
String comando = "";
String nome;
int posizione;
String tipo;
ArrayList< String > dati = new ArrayList<>(); // an other list
public tracciato() {
}
}
请注意,在类tracciato中还有另一个列表.... 它们是嵌套的3个列表...我可以使用dataTable吗? 感谢您的建议。
答案 0 :(得分:0)
我会选择像Tree
这样的东西,在控制台上看起来可能是这样的:
List1
-List1_1
-- commando:
-- nome
---List1_1_1
and so on.
但是,如果您希望它是图形化的,那么还有Tree
Java实现可用。