I am implementing JTable as user registration form, I am almost done, but when an data is added its not showing latest data entered and also the size of JTable is very small. How can i increase that?
code is in below link JTable Implementation
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your table won’t magically know when you’ve added data unless you tell it.
Take a look at DefaultTableModel#addRow
Once you’ve inserted your new row into the data base, you need to add it to the table model.
Take a look at How to Use Tables