IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Composants Java Discussion :

Mis à jour des données dans un JTable


Sujet :

Composants Java

  1. #1
    Nouveau membre du Club
    Profil pro
    Étudiant
    Inscrit en
    Août 2009
    Messages
    68
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Août 2009
    Messages : 68
    Points : 27
    Points
    27
    Par défaut Mis à jour des données dans un JTable
    Bonjour, j'utilise actuellement un JTable pour afficher une liste de personnes, et pour ça j'utilise une classe personnalisé de AbstractTableModel !!

    Cependant, je sais qu'avec le DefaultTableModel on a une méthode qui permet de "mettre à jour" en utilisant je crois une méthode du style
    model.setVector(data, nomsColonnes);

    Où data est un tableau de String à 2 dimensions et noms colonnes un autre tableau de String à 1 dimension !!

    Mon problème c'est qu'avec mon AbstractTableModel je n'ai pas la possibilité d'utilisé cette méthode, et donc, c'est pas très pratique lorsque j'ajoute une personne, ou charge un fichier...

    Donc si quelqu'un pourrait m'aider, j'ai penser à redéfinir la méthode mais je ne sais pas comment, donc si quelqu'un peut m'indiquer comment faire...

    Merci d'avance !!

  2. #2
    Expert éminent sénior
    Avatar de adiGuba
    Homme Profil pro
    Développeur Java/Web
    Inscrit en
    Avril 2002
    Messages
    13 938
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur Java/Web
    Secteur : Transports

    Informations forums :
    Inscription : Avril 2002
    Messages : 13 938
    Points : 23 190
    Points
    23 190
    Billets dans le blog
    1
    Par défaut
    Salut,


    Comment stockes-tu tes données dans ton modèle ???

    Il te suffit d'ajouter les nouvelles données au modèle, puis de générer un évènement via les diverses méthodes fireXXX()...

    a++

  3. #3
    Membre actif Avatar de uhrand
    Profil pro
    Développeur informatique
    Inscrit en
    Octobre 2009
    Messages
    203
    Détails du profil
    Informations personnelles :
    Localisation : Luxembourg

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Octobre 2009
    Messages : 203
    Points : 275
    Points
    275
    Par défaut
    Citation Envoyé par Yopii Voir le message
    c'est pas très pratique lorsque j'ajoute une personne, ou charge un fichier...
    Essaie avec la classe "RowTableModel":
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    ...
        private JTable table;
        private List<Person> data;
        private List<String> cols;
        private RowTableModel model;
    ...
            data = new ArrayList<Person>();
            cols = new ArrayList<String>();
            cols.add("Id");
            cols.add("Name");
            model = new RowTableModel(data, cols, Person.class) {
     
                public Object getValueAt(int rowIndex, int columnIndex) {
                    switch (columnIndex) {
                        case 0:
                            return data.get(rowIndex).getId();
                        case 1:
                            return data.get(rowIndex).getName();
                    }
                    return null;
                }
            };
            table.setModel(model);
    ...
            data.add(new Person("1", "André"));
            data.add(new Person("2", "Paul"));
            data.add(new Person("3", "Jean"));
            data.add(new Person("4", "Pierre"));
            model.setDataAndColumnNames(data, cols);
    ...
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    import java.lang.reflect.*;
    import java.util.*;
    import javax.swing.table.*;
    /**
     *  A TableModel that better supports the processing of rows of data. That
     *  is, the data is treated more like a row than an individual cell. Hopefully
     *  this class can be used as a parent class instead of extending the
     *  AbstractTableModel when you need custom models that contain row related
     *  data.
     *
     *  A few methods have also been added to make it easier to customize
     *  properties of the model, such as the column class and column editability.
     *
     *  Any class that extends this class must make sure to invoke the
     *  setRowClass() and setDataAndColumnNames() methods either indirectly,
     *  by using the various constructors, or indirectly.
     *
     */
    abstract class RowTableModel<T> extends AbstractTableModel {
     
        protected List<T> modelData;
        protected List<String> columnNames;
        protected Class[] columnClasses;
        protected Boolean[] isColumnEditable;
        private Class rowClass = Object.class;
        private boolean isModelEditable = true;
     
        /**
         *  Constructs a <code>RowTableModel</code> with the row class.
         *
         *  This value is used by the getRowsAsArray() method.
         *
         *  Sub classes creating a model using this constructor must make sure
         *  to invoke the setDataAndColumnNames() method.
         *
         * @param rowClass  the class of row data to be added to the model
         */
        protected RowTableModel(Class rowClass) {
            setRowClass(rowClass);
        }
     
        /**
         *  Constructs a <code>RowTableModel</code> with column names.
         *
         *  Each column's name will be taken from the <code>columnNames</code>
         *  List and the number of colums is determined by thenumber of items
         *  in the <code>columnNames</code> List.
         *
         *  Sub classes creating a model using this constructor must make sure
         *  to invoke the setRowClass() method.
         *
         * @param columnNames          <code>List</code> containing the names
         *                                                  of the new columns
         */
        protected RowTableModel(List<String> columnNames) {
            this(new ArrayList<T>(), columnNames);
        }
     
        /**
         *  Constructs a <code>RowTableModel</code> with initial data and
         *  customized column names.
         *
         *  Each item in the <code>modelData</code> List must also be a List Object
         *  containing items for each column of the row.
         *
         *  Each column's name will be taken from the <code>columnNames</code>
         *  List and the number of colums is determined by thenumber of items
         *  in the <code>columnNames</code> List.
         *
         *  Sub classes creating a model using this constructor must make sure
         *  to invoke the setRowClass() method.
         *
         * @param modelData          the data of the table
         * @param columnNames          <code>List</code> containing the names
         *                                                  of the new columns
         */
        protected RowTableModel(List<T> modelData, List<String> columnNames) {
            setDataAndColumnNames(modelData, columnNames);
        }
     
        /**
         *  Full Constructor for creating a <code>RowTableModel</code>.
         *
         *  Each item in the <code>modelData</code> List must also be a List Object
         *  containing items for each column of the row.
         *
         *  Each column's name will be taken from the <code>columnNames</code>
         *  List and the number of colums is determined by thenumber of items
         *  in the <code>columnNames</code> List.
         *
         *  @param modelData        the data of the table
         *  @param columnNames      <code>List</code> containing the names
         *                                          of the new columns
         *  @param rowClass     the class of row data to be added to the model
         */
        protected RowTableModel(List<T> modelData, List<String> columnNames, Class rowClass) {
            setDataAndColumnNames(modelData, columnNames);
            setRowClass(rowClass);
        }
     
        /**
         *  Reset the data and column names of the model.
         *
         *  A fireTableStructureChanged event will be generated.
         *
         * @param modelData          the data of the table
         * @param columnNames          <code>List</code> containing the names
         *                                                  of the new columns
         */
        protected void setDataAndColumnNames(List<T> modelData, List<String> columnNames) {
            this.modelData = modelData;
            this.columnNames = columnNames;
            columnClasses = new Class[getColumnCount()];
            isColumnEditable = new Boolean[getColumnCount()];
            fireTableStructureChanged();
        }
     
        /**
         *  The class of the Row being stored in the TableModel
         *
         *  This is required for the getRowsAsArray() method to return the
         *  proper class of row.
         *
         * @param rowClas            the class of the row
         */
        protected void setRowClass(Class rowClass) {
            this.rowClass = rowClass;
        }
    //
    //  Implement the TableModel interface
    //
     
        /**
         *  Returns the Class of the queried <code>column</code>.
     
         *  First it will check to see if a Class has been specified for the
         *  <code>column</code> by using the <code>setColumnClass</code> method.
         *  If not, then the superclass value is returned.
         *
         *  @param column  the column being queried
         *  @return the Class of the column being queried
         */
        @Override
        public Class getColumnClass(int column) {
            Class columnClass = null;
     
            //  Get the class, if set, for the specified column
     
            if (column < columnClasses.length) {
                columnClass = columnClasses[column];
            }
     
            //  Get the default class
     
            if (columnClass == null) {
                columnClass = super.getColumnClass(column);
            }
     
            return columnClass;
        }
     
        /**
         * Returns the number of columns in this table model.
         *
         * @return the number of columns in the model
         */
        public int getColumnCount() {
            return columnNames.size();
        }
     
        /**
         * Returns the column name.
         *
         * @return a name for this column using the string value of the
         * appropriate member in <code>columnNames</code>. If
         * <code>columnNames</code> does not have an entry for this index
         * then the default name provided by the superclass is returned
         */
        @Override
        public String getColumnName(int column) {
            Object columnName = null;
     
            if (column < columnNames.size()) {
                columnName = columnNames.get(column);
            }
     
            return (columnName == null) ? super.getColumnName(column) : columnName.toString();
        }
     
        /**
         * Returns the number of rows in this table model.
         *
         * @return the number of rows in the model
         */
        public int getRowCount() {
            return modelData.size();
        }
     
        /**
         * Returns true regardless of parameter values.
         *
         * @param   row                the row whose value is to be queried
         * @param   column          the column whose value is to be queried
         * @return                            true
         */
        @Override
        public boolean isCellEditable(int row, int column) {
            Boolean isEditable = null;
     
            //  Check is column editability has been set
     
            if (column < isColumnEditable.length) {
                isEditable = isColumnEditable[column];
            }
     
            return (isEditable == null) ? isModelEditable : isEditable.booleanValue();
        }
    //
    //  Implement custom methods
    //
     
        /**
         *  Adds a row of data to the end of the model.
         *  Notification of the row being added will be generated.
         *
         * @param   rowData          data of the row being added
         */
        public void addRow(T rowData) {
            insertRow(getRowCount(), rowData);
        }
     
        /**
         * Returns the Object of the requested <code>row</code>.
         *
         * @return the Object of the requested row.
         */
        public T getRow(int row) {
            return modelData.get(row);
        }
     
        /**
         * Returns an array of Objects for the requested <code>rows</code>.
         *
         * @return an array of Objects for the requested rows.
         */
        @SuppressWarnings("unchecked")
        public T[] getRowsAsArray(int... rows) {
            List<T> rowData = getRowsAsList(rows);
            T[] array = (T[]) Array.newInstance(rowClass, rowData.size());
            return (T[]) rowData.toArray(array);
        }
     
        /**
         * Returns a List of Objects for the requested <code>rows</code>.
         *
         * @return a List of Objects for the requested rows.
         */
        public List<T> getRowsAsList(int... rows) {
            ArrayList<T> rowData = new ArrayList<T>(rows.length);
     
            for (int i = 0; i < rows.length; i++) {
                rowData.add(getRow(rows[i]));
            }
     
            return rowData;
        }
     
        /**
         *  Insert a row of data at the <code>row</code> location in the model.
         *  Notification of the row being added will be generated.
         *
         *  @param   row      row in the model where the data will be inserted
         *  @param   rowData  data of the row being added
         */
        public void insertRow(int row, T rowData) {
            modelData.add(row, rowData);
            fireTableRowsInserted(row, row);
        }
     
        /**
         *  Insert multiple rows of data at the <code>row</code> location in the model.
         *  Notification of the row being added will be generated.
         *
         * @param   row       row in the model where the data will be inserted
         * @param   rowList  each item in the list is a separate row of data
         */
        public void insertRows(int row, List<T> rowList) {
            modelData.addAll(row, rowList);
            fireTableRowsInserted(row, row + rowList.size() - 1);
        }
     
        /**
         *  Insert multiple rows of data at the <code>row</code> location in the model.
         *  Notification of the row being added will be generated.
         *
         * @param   row       row in the model where the data will be inserted
         * @param   rowArray  each item in the Array is a separate row of data
         */
        public void insertRows(int row, T[] rowArray) {
            List<T> rowList = new ArrayList<T>(rowArray.length);
     
            for (int i = 0; i < rowArray.length; i++) {
                rowList.add(rowArray[i]);
            }
     
            insertRows(row, rowList);
        }
     
        /**
         *  Moves one or more rows from the inlcusive range <code>start</code> to
         *  <code>end</code> to the <code>to</code> position in the model.
         *  After the move, the row that was at index <code>start</code>
         *  will be at index <code>to</code>.
         *  This method will send a <code>tableRowsUpdated</code> notification
         *  message to all the listeners. <p>
         *
         *  <pre>
         *  Examples of moves:
         *  <p>
         *  1. moveRow(1,3,5);
         *            a|B|C|D|e|f|g|h|i|j|k   - before
         *            a|e|f|g|h|B|C|D|i|j|k   - after
         *  <p>
         *  2. moveRow(6,7,1);
         *            a|b|c|d|e|f|G|H|i|j|k   - before
         *            a|G|H|b|c|d|e|f|i|j|k   - after
         *  <p>
         *  </pre>
         *
         * @param   start      the starting row index to be moved
         * @param   end              the ending row index to be moved
         * @param   to                the destination of the rows to be moved
         * @exception  IllegalArgumentException
         *                                    if any of the elements would be moved out
         *                                    of the table's range
         */
        public void moveRow(int start, int end, int to) {
            if (start < 0) {
                String message = "Start index must be positive: " + start;
                throw new IllegalArgumentException(message);
            }
     
            if (end > getRowCount() - 1) {
                String message = "End index must be less than total rows: " + end;
                throw new IllegalArgumentException(message);
            }
     
            if (start > end) {
                String message = "Start index cannot be greater than end index";
                throw new IllegalArgumentException(message);
            }
     
            int rowsMoved = end - start + 1;
     
            if (to < 0 || to > getRowCount() - rowsMoved) {
                String message = "New destination row (" + to + ") is invalid";
                throw new IllegalArgumentException(message);
            }
     
            //  Save references to the rows that are about to be moved
     
            ArrayList<T> temp = new ArrayList<T>(rowsMoved);
     
            for (int i = start; i < end + 1; i++) {
                temp.add(modelData.get(i));
            }
     
            //  Remove the rows from the current location and add them back
            //  at the specified new location
     
            modelData.subList(start, end + 1).clear();
            modelData.addAll(to, temp);
     
            //  Determine the rows that need to be repainted to reflect the move
     
            int first;
            int last;
     
            if (to < start) {
                first = to;
                last = end;
            } else {
                first = start;
                last = to + end - start;
            }
     
            fireTableRowsUpdated(first, last);
        }
     
        /**
         *  Remove the specified rows from the model. Rows between the starting
         *  and ending indexes, inclusively, will be removed.
         *  Notification of the rows being removed will be generated.
         *
         * @param   start            starting row index
         * @param   end                ending row index
         * @exception  ArrayIndexOutOfBoundsException
         *                                                          if any row index is invalid
         */
        public void removeRowRange(int start, int end) {
            modelData.subList(start, end + 1).clear();
            fireTableRowsDeleted(start, end);
        }
     
        /**
         *  Remove the specified rows from the model. The row indexes in the
         *  array must be in increasing order.
         *  Notification of the rows being removed will be generated.
         *
         * @param   rows  array containing indexes of rows to be removed
         * @exception  ArrayIndexOutOfBoundsException
         *                            if any row index is invalid
         */
        public void removeRows(int... rows) {
            for (int i = rows.length - 1; i >= 0; i--) {
                int row = rows[i];
                modelData.remove(row);
                fireTableRowsDeleted(row, row);
            }
        }
     
        /**
         *  Replace a row of data at the <code>row</code> location in the model.
         *  Notification of the row being replaced will be generated.
         *
         * @param   row       row in the model where the data will be replaced
         * @param   rowData  data of the row to replace the existing data
         * @exception  IllegalArgumentException  when the Class of the row data
         *                   does not match the row Class of the model.
         */
        public void replaceRow(int row, T rowData) {
            modelData.set(row, rowData);
            fireTableRowsUpdated(row, row);
        }
     
        /**
         * Sets the Class for the specified column.
         *
         * @param  column      the column whose Class is being changed
         * @param  columnClass  the new Class of the column
         * @exception  ArrayIndexOutOfBoundsException
         *                                          if an invalid column was given
         */
        public void setColumnClass(int column, Class columnClass) {
            columnClasses[column] = columnClass;
            fireTableRowsUpdated(0, getColumnCount() - 1);
        }
     
        /**
         * Sets the editability for the specified column.
         *
         * @param  column      the column whose Class is being changed
         * @param  isEditable   indicates if the column is editable or not
         * @exception  ArrayIndexOutOfBoundsException
         *                                          if an invalid column was given
         */
        public void setColumnEditable(int column, boolean isEditable) {
            isColumnEditable[column] = isEditable ? Boolean.TRUE : Boolean.FALSE;
        }
     
        /**
         *  Set the ability to edit cell data for the entire table
         *
         *  Note: values set by the setColumnEditable(...) method will have
         *  prioritiy over this value.
         *
         * @param isModelEditable  true/false
         */
        public void setModelEditable(boolean isModelEditable) {
            this.isModelEditable = isModelEditable;
        }
     
        /*
         *  Convert an unformatted column name to a formatted column name.
         *
         *  That is, insert a space when a new uppercase character is found,
         *  insert multiple upper case characters are grouped together.
         *
         *  @param columnName  unformatted column name
         *  @return the formatted column name
         */
        public static String formatColumnName(String columnName) {
            if (columnName.length() < 3) {
                return columnName;
            }
     
            StringBuffer buffer = new StringBuffer(columnName);
            boolean isPreviousLowerCase = false;
     
            for (int i = 1; i < buffer.length(); i++) {
                boolean isCurrentUpperCase = Character.isUpperCase(buffer.charAt(i));
     
                if (isCurrentUpperCase && isPreviousLowerCase) {
                    buffer.insert(i, " ");
                    i++;
                }
     
                isPreviousLowerCase = !isCurrentUpperCase;
            }
     
            return buffer.toString();
        }
    }
    http://tips4java.wordpress.com/2008/...w-table-model/

Discussions similaires

  1. mettre à jour des données dans un listbox
    Par sylvain50 dans le forum Débuter
    Réponses: 5
    Dernier message: 10/11/2009, 19h37
  2. Réponses: 0
    Dernier message: 04/08/2008, 15h54
  3. Réponses: 4
    Dernier message: 05/07/2008, 21h06
  4. Mise à jour des données dans une colonne
    Par BZH75 dans le forum SQL
    Réponses: 9
    Dernier message: 09/01/2008, 17h18
  5. Interdire les modifications des données dans une JTable
    Par markfish55 dans le forum Composants
    Réponses: 3
    Dernier message: 19/12/2006, 16h48

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo