Java弹出对话框的实现——JOptionPane的使⽤⽅法
在⼀些Java⼩程序或游戏中,我们点击某个按钮或者进⾏某项操作时,经常会弹出⼀个对话框,来提⽰我们选择确定、取消等操作。在Java中,可以调⽤JOptionPane这个类来⽣成对话框,并根据需求对其进⾏不同的功能设置。通过调⽤该类中不同的⽅法,并输⼊不同的参数,我们可以得到不同功能的对话框。
创建对话框时我们要导⼊ javax.swing.JOptionPane,这是JOptionPane的类包。
在Java中,有四种常⽤的对话框类型,分别是:
确认对话框:showConfirmDialog()
输⼊对话框:showInputDialog()
消息对话框:showMessageDialog()
选择对话框:showOptionDialog()
确认对话框
确认对话框的作⽤是使⽤户确认其操作,⼀般包含操作的介绍信息及“确认”、“取消”等按钮。
确认对话框有四种参数设置类型:
JOptionPane.showConfirmDialog(parentComponent, message)
JOptionPane.showConfirmDialog(parentComponent, message, title, optionType)
JOptionPane.showConfirmDialog(parentComponent, message, title, optionType, messageType)
JOptionPane.showConfirmDialog(parentComponent, message, title, optionType, messageType, icon)
输⼊对话框
输⼊对话框增加了输⼊框,⽤户在对话框中可以输⼊特定信息。
输⼊对话框有六种参数设置类型:
JOptionPane.showInputDialog(message);
JOptionPane.showInputDialog(parentComponent, message);
JOptionPane.showInputDialog(message, initialSelectionValue);
JOptionPane.showInputDialog(parentComponent, message, initialSelectionValue)
JOptionPane.showInputDialog(parentComponent, message, title, messageType);
JOptionPane.showInputDialog(parentComponent, message, title, messageType, icon, selectionValues, initialSelectionValue)消息对话框
消息对话框是最简单的对话框,只是⽤来展⽰⼀段信息。
消息对话框有三种参数设置类型:
JOptionPane.showMessageDialog(parentComponent, message);
JOptionPane.showMessageDialog(parentComponent, message, title, messageType);
JOptionPane.showMessageDialog(parentComponent, message, title, messageType, icon);
选择对话框
选择对话框包含了多个选项操作,因此需要定义很多的参数设置。
选择对话框只有⼀种参数设置类型:
JOptionPane.showOptionDialog(parentComponent, message, title, optionType, messageType, icon, options, initialValue)
参数
在调⽤了⼀个对话框⽅法后,我们可以填写不同的参数格式,来⽣成不同格式的对话框。以下是对话框中的参数,以及它们各⾃的含义:
对话框所在的容器:parentComponent
提⽰消息:message
标题:title
选择按钮类型:optionType
消息类型:messageType
⾃定义消息图标:icon
默认选项或信息:initialSelectionValue
选择选项:selectionValues
操作选项:options
消息类型
编写的对话框共有五种消息类型,分别代表了不同的消息内容,并且会显⽰不同的图标。错误 :ERROR_MESSAGE
信息ℹ :INFORMATION_MESSAGE入门的java游戏小程序
警告⚠ :WARNING_MESSAGE
问题 :QUESTION_MESSAGE
纯⽂本:PLAIN_MESSAGE

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。