用其他(Import)Java替换一个JTable

时间:2016-08-14 01:10:38

标签: java jtable deserialization defaulttablemodel

我正在尝试用一个文件中存储的相同的carateristics来替换已经定义的一个Jtable,其中tis是对应的矢量数据向量。 这是我的代码:

   else if (e.getActionCommand().equals("import"))
        {
            JFileChooser file = new JFileChooser();
            int i = file.showOpenDialog(this);

            if(i == JFileChooser.APPROVE_OPTION)
            {
                File f = file.getSelectedFile();
                String filePath = f.getPath();

                try
                {
                    ObjectInputStream input = new ObjectInputStream(new FileInputStream(filePath));
                    Vector vectorData = (Vector)input.readObject();
                    data = new DefaultTableModel(vectorData, columNames);
                    table = new JTable(data);

                    labelStatus.setText("Archivo exitosamente importado.");

                } catch (FileNotFoundException e1)
                {
                    // TODO Auto-generated catch block
                    e1.printStackTrace();
                } 

问题在于,当我进行导入并选择包含Jtable数据的文件时,实际表没有被导入的更改,我该如何制作交换机?

此处将Jtable添加到ContentPane(Jpanel)中的代码:

 //data & columnNames are the data tha i used originally with the old Jtable
DefaultTableModel model = new DefaultTableModel(data, columnNames);
        table = new JTable(model);

        TableRowSorter<TableModel> sorter = new TableRowSorter<TableModel>(model); //Sorter Descending or Ascending the  data.
        table.setRowSorter(sorter);

        JScrollPane scrollTable = new JScrollPane(table);
        scrollTable.setBounds(22, 78, 764, 177);
        scrollTable.setViewportView(table);

        contentPane.add(scrollTable);

注意:我正在使用单个Jtable,DefaaultTableModel将其用作全局变量,并使用Import方法引用以通过新方法更改odl,但使用相同的方法。

新更新,完整功能代码:

public class Demo extends JFrame implements ActionListener
{

    private JPanel contentPane;
    DefaultTableModel data;
    JTable table;
    Vector<String> dataRow;
    Vector<String> columnNames;
    JScrollPane scrollTable;

public Demo() throws FileNotFoundException, IOException, ClassNotFoundException
    {
        columnNames = new Vector<>();
        columnNames.addElement("Name");
        columnNames.addElement("Cc");
        columnNames.addElement("Age");
        columnNames.addElement("Phone");
        columnNames.addElement("Date");
        columnNames.addElement("Amount");

        ObjectInputStream in = new ObjectInputStream(new FileInputStream("C:/Users/Harry/Desktop/AA gym Database.txt"));
        Vector data = (Vector)in.readObject(); //Add try catch instead of THROWS DECLARATION.

                                                     //rowData
        DefaultTableModel model = new DefaultTableModel(data, columnNames);
        table = new JTable(model);



        TableRowSorter<TableModel> sorter = new TableRowSorter<TableModel>(model); //Sorter Descending or Ascending the  data.
            table.setRowSorter(sorter);

            scrollTable = new JScrollPane(table);
            scrollTable.setBounds(22, 78, 764, 177);
            scrollTable.setViewportView(table);

            contentPane.add(scrollTable);

public void actionPerformed(ActionEvent e)
    {
        else if (e.getActionCommand().equals("import"))
        {
            JFileChooser file = new JFileChooser();
            int i = file.showOpenDialog(this);

            if(i == JFileChooser.APPROVE_OPTION)
            {
                File f = file.getSelectedFile();
                String filePath = f.getPath();

                try
                {

                    ObjectInputStream input = new ObjectInputStream(new FileInputStream(filePath));
                    Vector vectorData = (Vector)input.readObject();
                    data = new DefaultTableModel(vectorData, columnNames);
                    table.setModel(data);
}
}
}
}

0 个答案:

没有答案