Variable number of two-dimensional arrays into one big array
- by qlb
I have a variable number of two-dimensional arrays.
The first dimension is variable, the second dimension is constant.
i.e.:
Object[][] array0 = {
{"tim", "sanchez", 34, 175.5, "bla", "blub", "tim@tim.com"},
{"alice", "smith", 42, 160.0, "la", "bub", "alice@sdf.com"},
...
};
Object[][] array1 = {
{"john", "sdfs", 34, 15.5, "a", "bl",…