I\'m trying to convert a String[][] to a string for display in a GUI. Here\'s my code:
String[][]
String[][] tableBornes = SearchPropertiesPlugin.FillBorne
Try Arrays.toString(Object[] a)
for(String[] a : tableBornes) System.out.println(Arrays.toString(a));
The above code will print every array in two dimensional array tableBornes in newline.
tableBornes