• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

JTable

 
Ranch Hand
Posts: 106
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have created JTable which reads the data from a File using FileChooser.
The only thing which is working for me is that I have to ask user at command prompt to choose the file which has data. Once they choose the file I am able to show the Table in a frame with and a menu i am using the AbstractTableModel and a Vector to store the column headings and data in Vectors from file.
What I want to do is Open a frame with buttons and menu and empty table and when user clicks on menu's open option to open desired file then show the data in Table.
After that when user does any changes I will chack and again user can save the data in a file using FileChooser. This is working for me.
Only place I need help is how to show the empty table and then fill the coulmn of tables from file data.
Thanks.
 
Ranch Hand
Posts: 83
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What you can do is, you can fill the table with empty data, may be with "" initially and then you can change it when user chooses a file with data.
- Raja.
 
Swati Gupta
Ranch Hand
Posts: 106
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks a lot. I was afraid that I will have to do this. But finally I did that.
Now its working except few things.
Should I use firetableDataChanged() somewhere.
2) I had a scrollbar in the frame. Now that Scrolbar does not show up if the number of rows are more then the area defined.
This was initially where MyTableModel is the AbstractTableModel
MyTableModel myModel = new MyTableModel();
JTable table = new JTable(myModel);
table.setPreferredScrollableViewportSize(new Dimension(700,150));
JScrollPane scrol = new JScrollPane(table);
getContentPane().add(scrol,BorderLayout.CENTER);

After the values are changed I am using
new MyTableModel();
repaint();
Thanks.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic