java点击按钮返回值
时间: 2023-07-04 16:09:01 浏览: 102
在 Java 中,可以通过在按钮的监听器中设置返回值来实现点击按钮返回值的功能。具体步骤如下:
1. 创建按钮并添加 ActionListener 监听器
```
JButton button = new JButton("Click Me");
button.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// 点击按钮后执行的代码
}
});
```
2. 在 ActionListener 中设置返回值
```
JButton button = new JButton("Click Me");
button.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// 点击按钮后执行的代码
String returnValue = "Hello World";
// 设置返回值
((JButton) e.getSource()).putClientProperty("returnValue", returnValue);
}
});
```
3. 在需要获取返回值的地方获取返回值
```
String returnValue = (String) button.getClientProperty("returnValue");
```
注意:需要使用 `putClientProperty` 方法设置返回值,并且返回值的类型需要和设置返回值时的类型保持一致。
阅读全文