1

GridLayout を使用して任意のサイズのマトリックスを入力できる関数を作成しようとしていますが、JTextField 値を抽出して 'mat' var を埋める適切な方法が見つからないため、行き詰まっています (以下の FIXME を参照)。 .

    /**
     * @mat: matrix declared in main (e.g: mat[][] = new int[3][3];)
     * @rows: number of matrix rows (e.g: int rows = 3;)
     * @columns: number of matrix columns (e.g: int columns = 3;)
     */
    public static int[][] inputMatrix(int[][] mat, int rows, int columns)
    {
        JPanel panel = new JPanel();     
        panel.setLayout(new GridLayout(rows,columns));

        for (int a=0; a<(rows*columns); a++)
        {
            panel.add(new JTextField(a));
        }

        if (JOptionPane.showConfirmDialog(null, panel, "Enter the matrix", JOptionPane.OK_CANCEL_OPTION)
                                        == JOptionPane.OK_OPTION)
        {
            for(int a=0; a<(rows*columns); a++){
                for(int b=0; b<rows; b++){
                    for(int c=0; c<columns; c++){
                        /* FIXME: find how to extract JTextField values. */
                        mat[b][c] = JTextField.a.getText();
                    }
                }
            }
        }

        return mat;
    }

よろしくお願いします。

4

2 に答える 2

3
  • 敷設された束の代わりにJTableを使用するJTextFieldGridLayout

また

  • そこputClientPropertyに追加し、識別子Rowa Columnfromを追加しますGridLayout

  • JTextFieldに置くHashMap

  • 私は好むだろうputClientProperty(あなたは数または追加情報をマルチプレイすることができます..、別々の数はputClientPropertyどういうわけか減っていません)

  • (明確ではない)設計に依存します。(アクセラレータは)またはActionListenerに追加できますJTextFieldENTER keyDocumentListener

仮想例、JButtonおよびのコード例はActionListenerputClientPropertyすべてのメソッドからアクセス可能であるか、Listenersに追加されていますJTextField

ループの中

buttons[i][j].putClientProperty("column", i);
buttons[i][j].putClientProperty("row", j);
buttons[i][j].addActionListener(new MyActionListener());

そしてActionListenerから取得します(たとえば)

public class MyActionListener implements ActionListener {

    @Override
    public void actionPerformed(ActionEvent e) {
        JButton btn = (JButton) e.getSource();
        System.out.println("clicked column " + btn.getClientProperty("column")
                + ", row " + btn.getClientProperty("row"));
}
于 2012-11-23T15:00:56.623 に答える
1

3 行 x 3 列のグリッドがあるとします。GridLayout は行ごとに追加されるため、2 行目の最初のアイテムは、グリッドに追加した 4 番目のアイテムになります。panel.getComponent(3) を呼び出すことで、このアイテムを取得できます (ゼロ インデックスなので、4 番目のアイテムはインデックス 3 になります)。

したがって、getComponent を使用して、少し計算を行い、列の数とマトリックスの i,j 座標に基づいて正しいインデックスを計算することができます。

于 2012-11-23T15:07:10.203 に答える