Note that there are some explanatory texts on larger screens.

plurals
  1. POJTable and DefaultTableModel dosen't refresh table data
    primarykey
    data
    text
    <p>I have a problem with updating/refreshing data in table. I am using DefaultTableModel. Here is code so please share your knowledge and advises. Best regards. </p> <p>*<em>EDIT 1: *</em> Original code has a function that was updating table data but that proves wrong because of constructor which is creating over and over new JTable and new JScrollPane. That's why I created new constructor and that bug was repaired. After I implement new constructor, table data still didn't refresh. Next I was try to debug data that constructor received thought other class (passDatatoTable class). After I used function setValueAt() and then System.out.println(getValueAt(i,1)), output was null. And that's it First here is main class that creates gui:</p> <pre><code>import javax.swing.*; public class Glavni { public static void main(String[] args) { // TODO Auto-generated method stub SwingUtilities.invokeLater(new Runnable() { public void run() { gui Scanner = new gui(); Scanner.setVisible(true); } }); } } </code></pre> <p>Second here is Class that send data to gui</p> <pre><code>public class passDatatoTable { public void passData(){ String str1,str2,str3,str4; for (int i =0;i&lt;=10;i++){ str1="Column 1 of row: "+i; str2="Column 2 of row: "+i; str3="Column 3 of row: "+i; str4="Column 4 of row: "+i; gui SendStringsToGUI = new gui(str1, str2, str3, str4); } } } </code></pre> <p>And here is gui class. Button "Add Data" is used to fill data. Here is code:</p> <pre><code>public class gui extends JFrame implements ActionListener { private static final long serialVersionUID = 1L; String[][] data = new String[100][4]; String[] columnNames = new String[]{ "IP", "PC_NAME", "ttl", "db" }; DefaultTableModel model = new DefaultTableModel(data,columnNames); JTable table = new JTable(model); JScrollPane scrollPane = new JScrollPane(table); int i=0; public gui(String IP, String PC_NAME, String ttl, String gw) { //Used this constructor to avoid creating new gui in other classes model.setValueAt(IP, i, 0); model.setValueAt(PC_NAME, i, 1); model.setValueAt(ttl, i, 2); model.setValueAt(gw, i, 3); i++; model.fireTableDataChanged(); table.repaint(); scrollPane.repaint(); } gui(){ JButton addData= new JButton("Add Data"); JButton next = new JButton("next"); JButton prev = new JButton("prev"); addData.addActionListener(this); next.addActionListener(this); prev.addActionListener(this); JPanel panel = new JPanel(new BorderLayout()); JPanel buttonPanel = new JPanel(); buttonPanel.add(addData); buttonPanel.add(prev); buttonPanel.add(next); panel.add(buttonPanel, BorderLayout.SOUTH); panel.add(table.getTableHeader(), BorderLayout.PAGE_START); panel.add(scrollPane, BorderLayout.CENTER); getContentPane().add(panel); } </code></pre> <p>Here is ActionListeners. Buttons next and prev are used for paging and button "Add Data" is used to create variable of class "passDatatoTable" which is used to fill data of table</p> <p>here is code:</p> <pre><code>public void actionPerformed(ActionEvent e) { if ("Add Data".equals(e.getActionCommand())){ passDatatoTable passSomeData = new passDatatoTable(); passSomeData.passData(); } if ("next".equals(e.getActionCommand())) { Rectangle rect = scrollPane.getVisibleRect(); JScrollBar bar = scrollPane.getVerticalScrollBar(); int blockIncr = scrollPane.getViewport().getViewRect().height; bar.setValue(bar.getValue() + blockIncr); scrollPane.scrollRectToVisible(rect); } if ("prev".equals(e.getActionCommand())) { Rectangle rect = scrollPane.getVisibleRect(); JScrollBar bar = scrollPane.getVerticalScrollBar(); int blockIncr = scrollPane.getViewport().getViewRect().height; bar.setValue(bar.getValue() - blockIncr); scrollPane.scrollRectToVisible(rect); } } </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload