I'm trying to display data that I have stored in an ArrayList into JtextField. for example I would like to get the (ID,Name,Age,Gender) at point 0 in the array and display them into JtextFields.
I have tried the code below but it does not work as expected:
for (int i = 0; i < GPSDataEnter.size(); i++) {
LatTextData.append((String) GPSDataEnter.get(i));
}