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 :

probleme Affichage JTable


Sujet :

Composants Java

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre averti
    Inscrit en
    Avril 2009
    Messages
    34
    Détails du profil
    Informations forums :
    Inscription : Avril 2009
    Messages : 34
    Par défaut probleme Affichage JTable
    Bonjour,
    Je voudrais savoir comment je peux afficher les données de ma JTable au fur et à mesure car je récupére les donnée d'une balance, mais mon tableau attend que toutes les pesée soit faite pour afficher mon tableau, et c'est enbetant. Savez vous comment je peux faire?
    Merci d'avance
    Krikri

  2. #2
    Membre confirmé
    Profil pro
    Étudiant
    Inscrit en
    Novembre 2008
    Messages
    144
    Détails du profil
    Informations personnelles :
    Âge : 36
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Novembre 2008
    Messages : 144
    Par défaut
    normalement tu dois recuperer le model de ta jtable que tu cast en defaulttablemodel et des qu il a fini une pesee tu ajoutes une ligne au modele.

  3. #3
    Membre averti
    Inscrit en
    Avril 2009
    Messages
    34
    Détails du profil
    Informations forums :
    Inscription : Avril 2009
    Messages : 34
    Par défaut
    Bonsoir
    Voici ma classe Tableau (le modele de ma JTable
    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
    /*
     * To change this template, choose Tools | Templates
     * and open the template in the editor.
     */
     
    package balance;
     
    import com.sun.comm.Win32Driver;
    import java.awt.Component;
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.util.ArrayList;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.comm.CommPortIdentifier;
    import javax.comm.NoSuchPortException;
    import javax.comm.PortInUseException;
    import javax.comm.SerialPort;
    import javax.comm.UnsupportedCommOperationException;
    import javax.swing.JTable;
    import javax.swing.table.AbstractTableModel;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.TableColumn;
     
    /**
     *
     * @author Christine
     */
    public class Tableau
    {
        JTable laTable;
        private boolean DEBUG=false;
        Balance balance;
        private ArrayList listePoids=new ArrayList();
        private BufferedReader bufRead;
        private CommPortIdentifier portId;
        private SerialPort sPort;
        public Tableau(int i) throws IOException, NoSuchPortException, PortInUseException, UnsupportedCommOperationException
        {
                Win32Driver w32Driver = new Win32Driver();
                w32Driver.initialize(); //initialisation du driver
                portId = CommPortIdentifier.getPortIdentifier("COM1"); //identification du port COM1
                sPort = (SerialPort) portId.open("BalanceAutomatique", 3000); //Ouvertur du port COM1
                sPort.setSerialPortParams(9600, SerialPort.DATABITS_7, SerialPort.STOPBITS_1, SerialPort.PARITY_ODD);
                bufRead = new BufferedReader(new InputStreamReader(sPort.getInputStream())); //Preparation de la lecture du port COM1
            this.laTable = new JTable(new MyTableModel(i));
            initColumnSizes(laTable);
           // balance=new Balance();
        }
     
        private void initColumnSizes(JTable table) {
            MyTableModel model = (MyTableModel)table.getModel();
            TableColumn column = null;
            Component comp = null;
            int headerWidth = 0;
            int cellWidth = 0;
            Object[] longValues = model.longValues;
            TableCellRenderer headerRenderer =
            table.getTableHeader().getDefaultRenderer();
     
            int indexFin=0;
     
     
            for (int i = 0; i < indexFin; i++) {
                System.out.println(i);
                System.out.println(indexFin);
                column = table.getColumnModel().getColumn(i);
     
                comp = headerRenderer.getTableCellRendererComponent(
                                     null, column.getHeaderValue(),
                                     false, false, 0, 0);
                headerWidth = comp.getPreferredSize().width;
     
                comp = table.getDefaultRenderer(model.getColumnClass(i)).
                                 getTableCellRendererComponent(
                                     table, longValues[i],
                                     false, false, 0, i);
                cellWidth = comp.getPreferredSize().width;
     
                if (DEBUG) {
                    System.out.println("Initializing width of column "
                                       + i + ". "
                                       + "headerWidth = " + headerWidth
                                       + "; cellWidth = " + cellWidth);
                }
     
                column.setPreferredWidth(Math.max(headerWidth, cellWidth));
            }
        }
     
        public Object [][] VerificationPeser(int i) throws IOException
        {
                int colNo = 4;
                int nombreLigne=5;
                Object[][] informations = new Object[nombreLigne][colNo]; // On créé un tableau pour chaque ligne de la taille du JTable
                for(i=0;i<nombreLigne;i++)
                {
                    int numEchantillon=Balance.RecupererNumEchantillon(i);
                    int numAiguille=Balance.RecupererNumAiguille(i);
                    String poids=bufRead.readLine();
                    poids=poids.replace(" ","");
                    //String poids="5654";
                    informations[i][0]=numEchantillon;
                    informations[i][1]=numAiguille;
                    informations[i][2]=poids;
                    informations[i][3]=new Boolean(false);
                    System.out.println(i);
                }
                return informations;
     
        }
     
     public Object[][] getResultat(int i) throws IOException
        {
            Object[][] tableaudesResultats=null;
            tableaudesResultats=VerificationPeser(i);
            return tableaudesResultats;
        }
     
     
     
        class MyTableModel extends AbstractTableModel {
            private String[] columnNames;
     
            private Object[][] data;
     
            public final Object[] longValues = {"Vosse","Christine",Boolean.TRUE,Boolean.TRUE};
            private boolean DEBUG;
     
            public MyTableModel(int i) throws IOException
            {
                    String[] columnNamesResultat={"Num Aiguille","Num Echantillon","Poids","Erreur"};
                    columnNames=columnNamesResultat;
                    data=getResultat(i);
     
            }
     
            public int getColumnCount() {
                return columnNames.length;
            }
     
            public int getRowCount() {
                return data.length;
            }
     
            public String getColumnName(int col) {
                return columnNames[col];
            }
     
            public Object getValueAt(int row, int col) {
                return data[row][col];
            }
     
     
            /*
             * JTable uses this method to determine the default renderer/
             * editor for each cell.  If we didn't implement this method,
             * then the last column would contain text ("true"/"false"),
             * rather than a check box.
             */
            public Class getColumnClass(int c) {
                return getValueAt(0, c).getClass();
            }
     
            /*
             * Don't need to implement this method unless your table's
             * editable.
             */
            public boolean isCellEditable(int row, int col) {
                //Note that the data/cell address is constant,
                //no matter where the cell appears onscreen.
                if (col < 3) {
                    return false;
                } else {
                    return true;
                }
            }
     
            /*
             * Don't need to implement this method unless your table's
             * data can change.
             */
            public void setValueAt(Object value, int row, int col) {
                if (DEBUG) {
                    System.out.println("Setting value at " + row + "," + col
                                       + " to " + value
                                       + " (an instance of "
                                       + value.getClass() + ")");
                }
     
                data[row][col] = value;
                fireTableCellUpdated(row, col);
     
                if (DEBUG) {
                    System.out.println("New value of data:");
                    printDebugData();
                }
            }
     
            private void printDebugData() {
                int numRows = getRowCount();
                int numCols = getColumnCount();
     
                for (int i=0; i < numRows; i++) {
                    System.out.print("    row " + i + ":");
                    for (int j=0; j < numCols; j++) {
                        System.out.print("  " + data[i][j]);
                    }
                    System.out.println();
                }
                System.out.println("--------------------------");
            }
        }
    }
    ensuite l'appel :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    Table.setModel(new Tableau(i).laTable.getModel());
                }
    voilà si ca peut vous aider à m'aider
    Merci d'avaance
    Christine

  4. #4
    Membre confirmé
    Profil pro
    Étudiant
    Inscrit en
    Novembre 2008
    Messages
    144
    Détails du profil
    Informations personnelles :
    Âge : 36
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Novembre 2008
    Messages : 144
    Par défaut
    heu si tu as une methode qui permet de detecter au de recevoir le resultat en "temps reel" il faut placer cette instruction;

    DefaultTableModel dtm = null;
    dtm = (DefaultTableModel) latable.getModel();

    dtm.addrow( les valeur des differentes colonnes);

    et le tour est joué.
    En esperant que je comprenne bien ton probleme Christine.

Discussions similaires

  1. probleme affichage avec jtable
    Par lamine1987 dans le forum Composants
    Réponses: 4
    Dernier message: 03/08/2009, 02h26
  2. Probleme affichage arraylist dans jtable
    Par brew94 dans le forum Collection et Stream
    Réponses: 1
    Dernier message: 19/12/2008, 13h31
  3. Probleme affichage jtable
    Par norkoffire dans le forum Composants
    Réponses: 17
    Dernier message: 13/06/2007, 17h26
  4. Probleme affichage noir quand Build/Compile
    Par balabi dans le forum MFC
    Réponses: 3
    Dernier message: 01/06/2005, 16h12
  5. Probleme affichage dans tableau selon requête
    Par moulette85 dans le forum Langage SQL
    Réponses: 11
    Dernier message: 01/03/2005, 15h44

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