Skip to content
Advertisement

I have a display problem with JTable in Java

Firstly I created a structure of JTable in the class of JPanel

JavaScript

and then I have updated a bunch of data into rows of JTable in a method of ActionListener when I add a button “Load” Load.addActionListener(listener);

JavaScript

My JTable show up but it has a uncomfortable problem like this enter image description here

I have tried a lot of way that I searched on Google but nobody can help me. If you know it please give me an anwser, I am a Freshman of college in Vietnam hope you understand my question. Thank you very much

Advertisement

Answer

JavaScript

You’re doing all this GUI building code within a painting method and that is, to be blunt, madness. Put it into code that is called once and only once, such as the class constructor. A painting method should be for painting and painting only.

Suggestions:

  • Get that code out of paint and into the class constructor
  • You shouldn’t be overriding paint to begin with
  • If you need to do custom drawing (you don’t show yet that you do), this should be done within the paintComponent method of a class that extends JPanel, not the paint method
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement