I'm working on a program that displays a MessageDialog
which shows data of an array I created. Each line for example:
11327|933393|2 is inside element 0 of an array.
11833|938393|1 is inside element 1 of an array.
For example pretend the numbers below are inside the MessageDialog
:
11327|933393|2
11833|938393|1
11934|483393|7
My only problem is that I can only display each element of the array one by one per MessageDialog. but I want to display all 3 elements inside one single MessageDialog.
Any hints or tips of how I can display my entire array inside one MessageDialog? :)