如何知道从网格中点击了哪个组件?

时间:2012-09-09 11:12:38

标签: java button grid

我创建了一个网格,其中包含使用2d数组的10x10按钮。我尝试了x.getSource()。getLabel(),但编译器说他们不兼容。我也想获得点击的特定按钮。

我想获得从我制作的网格中点击的确切按钮并获得其标签。我需要用什么方法?

import javax.swing.JFrame; //imports JFrame library
import javax.swing.JButton; //imports JButton library
import java.awt.GridLayout; //imports GridLayout library
import javax.swing.*;
import java.awt.event.*;
import java.util.*;

public class ButtonGrid extends JFrame implements ActionListener
{
    JFrame frame=new JFrame(); //creates frame
    JButton[][] grid; //names the grid of buttons
    public int x;
    public int y;
    public ButtonGrid(int width, int length)
    { //constructor
        char temp;
        String charput;
        frame.setLayout(new GridLayout(width,length)); //set layout
        grid = new JButton[width][length]; //allocate the size of grid
        for(int y=0; y<length; y++)
        { //start
            for(int x=0; x<width; x++) 
            {
                temp=charRand(); //get random character
                charput = ""+temp; //converts character to string
                grid[x][y]=new JButton(); //creates new button
                frame.add(grid[x][y]); //adds button to grid
                grid[x][y].addActionListener(this);
                grid[x][y].setLabel(charput); //set charput as label
            }
        }
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack(); //sets appropriate size for frame
        frame.setVisible(true); //makes frame visible
    }
    /* generates  randomiz letter for the button of the grid*/
    public char charRand()
    {
        String consonantList = new String("BCDFGHL"); //list 1
        String consonantList2 = new String("MNPRSTWY"); //list 2
        String consonantList3= new String("JQXZVK"); //list 3
        String vowelList = new String("AEIOU"); //list of vowels
        int vowelOrConsonant; //holder of random number 
        int chosen; //selects the chosen random letter
        Random randGen = new Random(); //generates random int value
        char selected; //gets the random letter chosen by variable chosen

        vowelOrConsonant = randGen.nextInt(4);
        if (vowelOrConsonant == 0)
        {
            chosen = randGen.nextInt(5); //list of vowels
            selected = vowelList.charAt(chosen); //selects a char from vowels
        }
        else if(vowelOrConsonant == 1)
        {
            chosen = randGen.nextInt(7); //list 1
            selected = consonantList2.charAt(chosen); //selects a char
        }
        else if(vowelOrConsonant == 2)
        {
            chosen = randGen.nextInt(8); //list 2
            selected = consonantList2.charAt(chosen); //selects a char
        }
        else
        {
            chosen = randGen.nextInt(6); //list 3
            selected = consonantList.charAt(chosen);
        }
        return selected; //returns the random letter
    }

    public static void main(String[] args) 
    {
        new ButtonGrid(10,10);//makes new ButtonGrid with 2 parameters
    }

    public void actionPerformed(ActionEvent x)
    {
        /* i get wrong output on this line. 
         * i want to get the exact button that was clicked and get its label.
         */ 
        if (x.getSource()==grid[x][y])
            JOptionPane.showMessageDialog(null,x.getSource().getLabel);
    }
}

2 个答案:

答案 0 :(得分:0)

getSource()会返回Object,因此您需要将其投放到JButton,如下所示:

public void actionPerformed(ActionEvent x) {
    JOptionPane.showMessageDialog(null, ((JButton)x.getSource()).getText());
}

另请注意,getLabel()setLabel()已弃用,应由getText()setText()替换。

答案 1 :(得分:0)

你可以创建一个扩展Jbutton的类。并为其添加两个类型为int(X&amp; Y)的字段。构造函数将如下所示:public MyButton(int x,y);

当你填充网格时,不要直接使用Jbutton类。使用你的课程和X&amp; Y供应i&amp;您正在使用的两个循环的j个参数。现在,当您使用Action Listener作为按钮时,您可以使用他的X&amp; Y字段代表它在网格上的位置。希望这可以帮助!这对我来说很有用,而且很简单。