[Solved] AWT-EventQueue-0 Exception when openning JFrame
All the code used to initialize the table model shouldn’t be part of its constructor. Don’t create a class extending DefaultTableModel, and don’t use static variables for the data and columns: you don’t want all the instances of your model to share a unique data vecstor and a unique columns vector. Move all this code … Read more