Java - Display A List Of Files Name From Folder To JTable

Java JTable Code - Populate A Jtable With A List Of Files Names From A Folder In Java Using NetBeans .

                                                                           


In this java Tutorial we will see How To Populate A JTable With Files Names From A Folder In Java Using NetBeans .






- to do that we will create a function and call it "getFilesName" :

   public void getFilesName()
    {
        File file = new File(getClass().getResource("/java_tutorials/products").getFile());
        File[] files = file.listFiles();
        DefaultTableModel model =    (DefaultTableModel)jTable_Files_Name.getModel();
        model.setColumnIdentifiers(new String[]{"Files Names"});
        Object[] row = new Object[1];
        for(int i = 0; i < files.length; i++)
        {
            row[0] = files[i].getName();
            model.addRow(row);
        }
    }


Entire Project Source Code:

package JAVA_VIDEOS_TUTORIALS;

import java.io.File;
import javax.swing.table.DefaultTableModel;

/**
 * @author 1bestcsharp.blogspot.com
 */
public class JTable_Files_Name extends javax.swing.JFrame {

    /**
     * Creates new form JTable_Files_Name
     */
    public JTable_Files_Name() {
        initComponents();
        // call the function
        getFilesName();
    }

 
    public void getFilesName()
    {
        File file = new File(getClass().getResource("/java_tutorials/products").getFile());

        File[] files = file.listFiles();

        DefaultTableModel model = (DefaultTableModel)jTable_Files_Name.getModel();

        model.setColumnIdentifiers(new String[]{"Files Names"});

        Object[] row = new Object[1];

        for(int i = 0; i < files.length; i++)
        {

            row[0] = files[i].getName();

            model.addRow(row);

        }
    }
 
    /**
     * This method is called from within the constructor to initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is always
     * regenerated by the Form Editor.
     */
    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">                        
    private void initComponents() {

        jScrollPane1 = new javax.swing.JScrollPane();
        jTable_Files_Name = new javax.swing.JTable();

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

        jTable_Files_Name.setModel(new javax.swing.table.DefaultTableModel(
            new Object [][] {

            },
            new String [] {
                "Title 1", "Title 2", "Title 3", "Title 4"
            }
        ));
        jScrollPane1.setViewportView(jTable_Files_Name);

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addContainerGap()
                .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 375, javax.swing.GroupLayout.PREFERRED_SIZE)
                .addContainerGap(15, Short.MAX_VALUE))
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addContainerGap()
                .addComponent(jScrollPane1)
                .addContainerGap())
        );

        pack();
    }// </editor-fold>                      

    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        /* Set the Nimbus look and feel */
        //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
        /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
         * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
         */
        try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            java.util.logging.Logger.getLogger(JTable_Files_Name.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(JTable_Files_Name.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(JTable_Files_Name.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(JTable_Files_Name.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }
        //</editor-fold>

        /* Create and display the form */
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new JTable_Files_Name().setVisible(true);
            }
        });
    }

    // Variables declaration - do not modify                  
    private javax.swing.JScrollPane jScrollPane1;
    private javax.swing.JTable jTable_Files_Name;
    // End of variables declaration                
}


///////////////OUTPUT:
jtable files names list
JTable With Files Names






Share this

Related Posts

Previous
Next Post »