Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

JavaFx TableView issues with big data

aakash.goyalMar 4 2013 — edited Mar 4 2013
I have been using JavaFx's tableview to display a huge amount of data from the database. The table is like 150+ columns and millions of rows. I can handle the rows by getting the data in chunks and implementing paginations( [http://stackoverflow.com/questions/12068907/javafx-tableview-performance-issue] ). But the no of columns is also an area of concern. It takes a lot of time to paint the data and does not update the data when I change the values in the model( [http://stackoverflow.com/questions/11065140/javafx-2-1-tableview-refresh-items/12737209#12737209] ). I dont have a predefined data structure and so the method at [http://stackoverflow.com/questions/13873361/javafx-tableview-is-not-updating] is not useful. I moved on to use JTable inside JavaFx but JFX2.0 has removed the support for Swing components inside a JavaFX scene. So being left with tableview is there some way to add pagination to columns and rows both without overutlizing the memory ?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 1 2013
Added on Mar 4 2013
1 comment
4,338 views