标签:style http color io 使用 ar java strong for
Swing组件中的JOptionPane可以快速编写一些GUI界面程序。虽然个人感觉美观不如用JFrame + 图片 + JButton 等等 构成的界面,但是方便性确实是不言而喻的。查阅API以及网上其他朋友的资料总结了下JOptionPane的用法:
1.1 showMessageDialog
显示一个带有OK按钮的模态对话框。
下面是几个使用showMessageDialog的例子:
效果如下:
效果如下:
1.2 showOptionDialog
这个函数可以改变显示在按钮上的文字。你还可以执行更多的个性化操作。
常规的消息框:
效果如下:
个性话消息框:
Object[] options ={ "好啊!", "去一边!" }; int m = JOptionPane.showOptionDialog(null, "我可以约你吗?", "标题",JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE, null, options, options[0]);
效果如下:
1.3 showInoutDialog
该方法返回一个Object类型。这个Object类型一般是一个String类型,反应了用户的输入。
下拉列表形式的例子:
Object[] obj2 ={ "足球", "篮球", "乒乓球" }; String s = (String) JOptionPane.showInputDialog(null,"请选择你的爱好:\n", "爱好", JOptionPane.PLAIN_MESSAGE, new ImageIcon("icon.png"), obj2, "足球");
效果如下:
文本框形式的例子:
JOptionPane.showInputDialog(null,"请输入你的爱好:\n","title",JOptionPane.PLAIN_MESSAGE,icon,null,"在这输入");
效果如下:
对应的小图标可参照下图:
实例:创建窗口输入半径,并且计算出圆形面积
import javax.swing.JOptionPane; public class test { public static void main(String[] args) { final double PI=3.1415926; double r=0.0; double s=0.0; String str=JOptionPane.showInputDialog("输入半径:"); r=Double.parseDouble(str); s=PI*r*r; JOptionPane.showMessageDialog(null,"圆的半径=" + r + "\n圆的面积= " + s ,"计算结果",JOptionPane.INFORMATION_MESSAGE); } }
标签:style http color io 使用 ar java strong for
原文地址:http://blog.csdn.net/zhuangjingyang/article/details/39667883