java 弹出输入框_Java--UI--弹出对话框
时间: 2023-07-02 08:22:47 浏览: 99
可以使用Java的Swing库来创建弹出对话框。下面是一个示例代码:
```java
import javax.swing.JOptionPane;
public class DialogExample {
public static void main(String[] args) {
// 弹出一个消息对话框
JOptionPane.showMessageDialog(null, "Hello, World!");
// 弹出一个带有输入框的对话框
String result = JOptionPane.showInputDialog(null, "What is your name?");
System.out.println("Your name is " + result);
// 弹出一个确认对话框
int choice = JOptionPane.showConfirmDialog(null, "Are you sure you want to quit?");
if (choice == JOptionPane.YES_OPTION) {
System.out.println("Goodbye!");
System.exit(0);
}
}
}
```
运行上述代码,将会弹出三个不同的对话框,分别是一个简单的消息对话框,一个带有输入框的对话框,以及一个确认对话框。你可以根据自己的需求修改这些对话框的内容和行为。
阅读全文