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

したがって、基本的にあなたの質問は、ファイルの内容をオブジェクト [][] に取得する方法ですか?

ファイルに行があり、行が次のようになっていると仮定します。

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++;   
}

最後に、行頭、行間、または最後に 1 行を空白のままにしておく (つまり、ファイルの最後の行が空である) 場合に発生する可能性がある indexOutOfBounds エラーに注意してください。

于 2013-02-19T08:13:03.240 に答える
0

ユーザーに関する情報を csv (カンマ区切り値) 形式でファイルに書き込み、OpenCSVを使用してそのファイルを解析し、表示に使用する行列または配列を作成できます。

于 2013-02-19T08:06:37.987 に答える