I have created a simple GUI which includes a JTable. This table may be saved & loaded via the appropriate Object Stream.
At this point the Save function is worki
JTable and its XxxTableModel is based on Vector or Object[]
have to load data from FileIO to the XxxTableModel in structure as is Vector or Object[]
FileIO
XxxTableModel
Vector
Object[]
all updates to the XxxTableModel must be done on EventDispatchThread, otherwise any changes are visible on the screen