JSP---调用javax.swing.JOptionPane类的对话框方法

Show an error dialog that displays the message, 'alert':

JOptionPane.showMessageDialog(null, "alert", "alert", JOptionPane.ERROR_MESSAGE);

 

Show an internal information dialog with the message, 'information':
JOptionPane.showInternalMessageDialog(frame, "information","information", JOptionPane.INFORMATION_MESSAGE);

 

Show an information panel with the options yes/no and message 'choose one':
JOptionPane.showConfirmDialog(null,"choose one", "choose one", JOptionPane.YES_NO_OPTION);

 

posted @ 2014-07-17 21:41  框框A  阅读(606)  评论(0编辑  收藏  举报