我想在按下
JButton
时收到一封按下的字母
public class ButtonDisabler implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
JButton btnGetText = (JButton) e.getSource();
char charLetterPressed;
charLetterPressed=(btnGetText.getText().charAt(1));
btnGetText.setEnabled(false);
}
}
然后,使用该字母并将其与字符串进行比较,然后仅在找到该字母时将其显示到
JLabel
char charChkWord;
StringBuffer word = new StringBuffer();
for (int i = 0; i < strRandomWord.length(); i++) {
charChkWord = strRandomWord.charAt(i);
if (charLetterPressed == String.valueOf(charChkWord)) {
lblWord.setText(word.append(charChkWord).toString());
}
}
我不知道如何获取该字母并将其与字符串进行比较。
我和垃圾神在一起,如果可以的话我会避免
KeyListeners
。
我还将按钮的文本设置为您要使用的字符和/或设置按钮的名称
JButton btnA = new JButton("A");
btnA.setName("A");
这将允许您选择如何在按钮上显示文本,同时为您提供一种提供可能对您更有用的附加信息的方法...
JButton button = (JButton) evt.getSource();
String text = button.getText();
// If you wanted to use the name of the button instead...
String name = button.getName();
// You would use this if you need part of the text...
char charPressed = Character.toLowerCase(text.charAt(0));
// You could to this to convert the character to a String for easier
// comparison...
String strCharPressed = Character.toString(text.charAt(0)).toLowerCase();
// A sample
String word = "This is a test";
// Finds the first occurrence of the character in the String...
// Comparison is case sensitive...
// If indexOf > -1 then the word contains the character
int indexOf = word.toLowerCase().indexOf(charPressed);
// Or, you just check to see if it is contained in the word...
boolean contains = word.toLowerCase().contains(Character.toString(charPressed));
System.out.println("indexOf = " + indexOf);
System.out.println("contains = " + contains);
我无法推荐
KeyListener
。相反,让每个按钮知道它的名称,如下所示和此处。
for (int i = 0; i < 26; i++) {
String letter = String.valueOf((char) (i + 'A'));
buttons[i] = new JButton(letter);
north.add(buttons[i]);
}
然后您可以使用
contains()
类中的 String
方法。
lblWord.getText().contains(button.getText());
您可以使
char charLetterPressed;
超出方法范围。
您不需要
String.valueOf(charChkWord)
只需使用 charLetterPressed == charChkWord
。
在
if
范围内,设置标签文本后使用 break;
退出 for
循环。
使用以下代码获取
KeyPressed
class MyKeyListener extends KeyAdapter {
public void keyPressed(KeyEvent evt) {
Char chr = evt.getKeyChar();
}
}
现在按下键,要将其转换为字符串,请执行以下操作....
String s = new String(chr);
if(s.equals(charChkWord)){
// Do something...
}else{
// Do something...
}