3

下面是显示表格的代码示例,但是当我想从其他文件的用户输入中检索信息时该怎么做?

package components;

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;

public class SimpleTableDemo extends JPanel {
    private boolean DEBUG = false;

    public SimpleTableDemo() {
        super(new GridLayout(1,0));

        String[] columnNames = {"First Name",
                                "Last Name",
                                "Sport",
                                "# of Years",
                                "Vegetarian"};

我如何从其他文件中检索信息,而不是手动输入每个信息?

        **Object[][] data = {
        {"Kathy", "Smith", "Snowboarding", new Integer(5), new Boolean(false)},
        {"John", "Doe","Rowing", new Integer(3), new Boolean(true)},
        {"Sue", "Black","Knitting", new Integer(2), new Boolean(false)},
        {"Jane", "White","Speed reading", new Integer(20), new Boolean(true)},
        {"Joe", "Brown","Pool", new Integer(10), new Boolean(false)} };**

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

        if (DEBUG) {
            table.addMouseListener(new MouseAdapter() {
                public void mouseClicked(MouseEvent e) {
                    printDebugData(table);
                }
            });
        }

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

        //Add the scroll pane to this panel.
        add(scrollPane);
    }

    private void printDebugData(JTable table) {
        int numRows = table.getRowCount();
        int numCols = table.getColumnCount();
        javax.swing.table.TableModel model = table.getModel();

        System.out.println("Value of data: ");
        for (int i=0; i < numRows; i++) {
            System.out.print("    row " + i + ":");
            for (int j=0; j < numCols; j++) {
                System.out.print("  " + model.getValueAt(i, j));
            }
            System.out.println();
        }
        System.out.println("--------------------------");
    }

    /**
     * Create the GUI and show it.  For thread safety,
     * this method should be invoked from the
     * event-dispatching thread.
     */
    private static void createAndShowGUI() {
        //Create and set up the window.
        JFrame frame = new JFrame("SimpleTableDemo");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        //Create and set up the content pane.
        SimpleTableDemo newContentPane = new SimpleTableDemo();
        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() {
                createAndShowGUI();
            }
        });
    }
}
4

2 回答 2

0

您可以将有关用户的信息以 csv(逗号分隔值)格式写入文件,然后使用OpenCSV解析该文件并构造用于显示的矩阵或数组。

于 2013-02-19T08:06:37.987 回答
0

所以,基本上你的问题是如何将文件的内容检索到 Object[][] 中?

假设您的文件有行并且这些行看起来像:

Kathy,Smith,Snowboarding,5,false
John,Doe,Rowing,3,true

那是一个 CSV 文件。要读取 CSV 文件,最好的办法是下载openCSV 但是,如果您仍然想自己做,并且您的数据在一个名为“data.csv”的文件中,我会使用扫描仪。另外,假设您不了解 ArrayLists 和类似的东西,这里有一些代码可以帮助您。

Scanner s = new Scanner(new File("data.csv"));
int count = 0;
while (s.hasNext())
   count++;
// now count has the number of lines in the file and you know 
// there are 5 attributes.
Object[][] data = new Object[count][5]
Scanner s1 = new Scanner(new File("data.csv"));
count = 0;
while(s1.hasNext()){
   String[] fields = s1.next().split(",");
   data[count][0] = field[0];
   data[count][1] = fields[1];
   data[count][2] = fields[2];
   data[count][3] = new Integer(Integer.parseInt(fields[3]));
   data[count][4] = new Boolean(fields[4].equals("true");
   count++;   
}

最后,请注意如果您在开头、行之间或结尾处留空一行(即文件的最后一行为空),可能会发生 indexOutOfBounds 错误

于 2013-02-19T08:13:03.240 回答