1

これは私の TableModel です。AbstractTableModel を拡張しました

class CustomTableModel extends AbstractTableModel
{
  String[] columnNames = {"Name","Contact","eMail","Address","City","Pin","State","Type","ID"};
  Vector<String[]> data = new Vector<String[]>();

  CustomTableModel()
  {
    try
    {
      //Using JDBC connection//
      while(rs.next())
      {
        String[] s=new String[9];
        s[0]=rs.getString(1);
        //System.out.println(s[0]);
        s[1]=rs.getString(2);
        s[2]=rs.getString(3);
        s[3]=rs.getString(4);
        s[4]=rs.getString(5);
        s[5]=rs.getString(6);
        s[6]=rs.getString(7);
        s[7]=rs.getString(8);
        s[8]=rs.getString(9);
        data.add(s);
      }
    }
    catch(Exception e)
    {
      System.out.println("the exception is :"+e.toString());
    }

  }
  public int getColumnCount() {
    int columnCount = columnNames.length;
    return columnCount;
  }
  public int getRowCount() {
    int rowCount = data.size();
    return rowCount;
  }
  public Object getValueAt(int rowIndex, int columnIndex) {
    return data.get(rowIndex)[columnIndex];
  }
  public String getColumnName(int column) {
    return columnNames[column];
  }
  public void removeRow(int r)
  {
    for(int i=0;i<data.size();i++)
    {
      String[] s = (String[])data.get(i);
      if(s[0]==getValueAt(r,0))
      {
        try
        {
          //using JDBC connections to delete the data from DB//
          //also removing the value from data and also updating the view//
          data.remove(data.get(i));
          fireTableRowsDeleted(r, r);
        }
        catch (Exception e)
        {
          System.out.println(e.toString());
        }
        break;
      }

    }
  }
  //I am using the following code to update the view but it doesnot work//
  public void addRow(String[] a)
  {
    data.add(a);
    fireTableRowsInserted(data.size() - 1, data.size() - 1);        
  }
}

CustomTableModel を拡張するテーブル クラスがあります。

class table extends CustomTableModel
{
  final JButton editButton = new JButton("Edit");
  final JButton deleteButton = new JButton("Delete");
  final JTable mytable = new JTable(new CustomTableModel());
  . 
  .
  .
}      

追加ボタンがあり、そのアクション リスナーで次のコードを使用して、追加したい値を渡します。

String[] a = {"a","b","c","d","e","f","g","h","i"};
table myTableObj = new table();
myTableObj.addRow(a);

Plsは私が間違っているところを教えてください。ありがとう

4

3 に答える 3

1

Plsは私が間違っているところを教えてください。ありがとう

String[] a = {"a","b","c","d","e","f","g","h","i"};
table myTableObj = new table();
myTableObj.addRow(a);
  • 話しているコード行

    1. 新しい行を作成する

    2. 新しいを作成しますJTable

    3. 行が新規に追加されますJTable

    4. JTableその結果、目に見える Swing GUI に新しいものが追加されることはありません。

    5. そうしないでください、なぜJTableすべてJButtonの s イベントで新しいが再作成されるのですか

    6. String[] a...CustomTableModel直接追加

  • より良いヘルプのために、SSCCE、短い、実行可能、コンパイル可能をすぐに投稿してください

于 2013-05-22T12:00:44.560 に答える
0

myCustomTable.fireTableStructureChanged(); を使用することもできます。

于 2013-05-22T16:14:38.037 に答える