agregar variables a columnas de jtable

Iniciado por soy_nicanor, 4 Marzo 2017, 14:45 PM

0 Miembros y 1 Visitante están viendo este tema.

soy_nicanor


Columna 0 que es vendedor es String, Efectivo es Double , EC es double, y Dato es integer
Código (java) [Seleccionar]

String[] titulos = {"Vendedor","Efectivo ", "Efectivo Cja", "Dato"};
        String[] registro = new String[4];
        modelo = new DefaultTableModel(null, titulos);

        Connection cn = Conexion.getConnection();

        String sSQL = "SELECT usuario.usuario, reportediario.gananciaTotal, reportediario.efectivoBruto "+
                "FROM reportediario " +
                "INNER JOIN usuario ON usuario.id_us=reportediario.id_us ";               
        try
        {
            Statement st = cn.createStatement();
            ResultSet rs = st.executeQuery(sSQL);
            int i=0;
            while(rs.next())
            {
                registro[0] = rs.getString("usuario.usuario");
                registro[1] = rs.getString("reportediario.gananciaTotal");
                registro[2] = rs.getString("reportediario.efectivoBruto");
                registro[3] = String.valueOf(i);
                i++;
                modelo.addRow(registro);               
            }           
            jTable1.setModel(modelo);//Buscador Princiapal         

            modelo = new DefaultTableModel(null, titulos) {
                    public Class getColumnClass(int column) {
                      if (column >= 0 && column <= getColumnCount())
                        return getValueAt(0, column).getClass();
                      else
                        return Object.class;
                    }
                };
        }
        catch (SQLException ex){
            JOptionPane.showMessageDialog(null, ex);
        }

        TableRowSorter<TableModel> elQueOrdena = new TableRowSorter<TableModel>(modelo);     
        jTable1.setRowSorter(elQueOrdena);


Como podría agregar variables a las columnas.