获取所选行

时间:2011-05-21 14:40:52

标签: java swing jtable

您好我想选择一行,点击按钮后我想显示这一行!

public class TableDemo extends JPanel {

    static List<String[]> rosterList = new ArrayList<String[]>();
    int[] rowIndices;

    public TableDemo() {
        super(new BorderLayout(3, 3));

        final JTable table = new JTable(new MyTableModel());
        table.setPreferredScrollableViewportSize(new Dimension(500, 70));
        table.setFillsViewportHeight(true);

        final JButton button = new JButton("Buy it");

        JPanel buttonCenter = new JPanel(new FlowLayout(FlowLayout.CENTER));

        button.addActionListener(new ActionListener() {

            public void actionPerformed(ActionEvent e) {
                button.addActionListener(new ActionListener() {

                    public void actionPerformed(ActionEvent e) {
                        if (table.getColumnSelectionAllowed()
                            && !table.getRowSelectionAllowed()) {
                            // Column selection is enabled
                            // Get the indices of the selected columns
                            int[] vColIndices = table.getSelectedColumns();
                        } else if (!table.getColumnSelectionAllowed()
                            && table.getRowSelectionAllowed()) {
                            // Row selection is enabled
                            // Get the indices of the selected rows
                            rowIndices = table.getSelectedRows();
                        }
                        if (rowIndices.length > 0) {
                            for (int i = 0; i <= rowIndices.length; i++) {
                                System.out.println(rowIndices[i]);
                            }
                        }
                    }
                });
            }
        });

        buttonCenter.add(button);
        add(buttonCenter, BorderLayout.SOUTH);

        //Create the scroll pane and add the table to it.
        JScrollPane scrollPane = new JScrollPane(table);

        //Add the scroll pane to this panel.
        add(scrollPane, BorderLayout.CENTER);
        //create a button

        // add a nice border
        setBorder(new EmptyBorder(5, 5, 5, 5));
    }

    class MyTableModel extends AbstractTableModel {

        private String[] columnNames = {
            "Κωδικός", "Ποσότητα", "Τιμή", "Περιγραφή", "Μέγεθος", "Ράτσα"
        };

        public int getColumnCount() {
            return columnNames.length;
        }

        public int getRowCount() {
            return rosterList.size();
        }

        @Override
        public String getColumnName(int col) {
            return columnNames[col];
        }

        public Object getValueAt(int row, int col) {
            return rosterList.get(row)[col];
        }
    }

    private static void createAndShowGUI() {
        //Create and set up the window.

        JFrame frame = new JFrame("TableDemo");

        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);


        //Create and set up the content pane.
        TableDemo newContentPane = new TableDemo();
        newContentPane.setOpaque(true); //content panes must be opaque
        frame.setContentPane(newContentPane);

        //Display the window.
        frame.pack();
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        //Schedule a job for the event-dispatching thread:
        //creating and showing this application's GUI.
        javax.swing.SwingUtilities.invokeLater(new Runnable() {

            public void run() {
                creatArr();
                createAndShowGUI();
            }
        });
    }

    private static void creatArr() {
        BufferedReader br = null;
        try {
            br = new BufferedReader(new FileReader("Dogss.txt"));
            String line = br.readLine();

            while (line != null) {
                String[] rowfields = line.split("#");
                rosterList.add(rowfields);
                line = br.readLine();
            }

        } catch (FileNotFoundException e) {
            // can be thrown when creating the FileReader/BufferedReader
            // deal with the exception
            e.printStackTrace();
        } catch (IOException e) {
            // can be thrown by br.readLine()
            // deal with the exception
            e.printStackTrace();
        }
    }
}

1 个答案:

答案 0 :(得分:5)

您可以使用

获取行号(从零开始)
table.getSelectedRow()

或通过

多个选定的行
table.getSelectedRows()
相关问题