I have a code that automatically create jlabels
.
I want that each label
should be at a row, Not beside!
I use this code:
lbl = new JLabel[rows];
for (int i = 0; i < rows; i++) {
lbl[i] = new JLabel(arrayResultRow[i].toString()+ "\n" );
}
But \n
does not work!