Refresh a jTable
I can't seem to get my table to refresh. I created a refresh button that calls jTable1.repaint(); private void jButton8ActionPerformed(java.awt.event.ActionEvent evt) // Reader Refresh jTable1.repaint(); } I also tried just recalling the RegistryValues again in the button like RegistryValues.arp(null); private void jButton8ActionPerformed(java.awt.event.ActionEvent evt) // Reader Refresh RegistryValues.arp(null); } Also tried combining the registryvalues and repaint in the button. Below is the code for my jTable . The RegistryValues are from another class that uses JNA to read the registry if