现在的位置: 首页 > 综合 > 正文

javax.swing.JOptionPane.showMessageDialog() 方法

2018年05月03日 ⁄ 综合 ⁄ 共 686字 ⁄ 字号 评论关闭
//default title and icon          

JOptionPane.showMessageDialog(frame,"Eggs are not supposed to be green.","Message");            

//custom title, warning icon

JOptionPane.showMessageDialog(frame,"Eggs are not supposed to be green.", "Inane warning",JOptionPane.WARNING_MESSAGE);  

//custom title, error icon

JOptionPane.showMessageDialog(frame,"Eggs are not supposed to be green.", "Inane error",JOptionPane.ERROR_MESSAGE);

//custom title, no icon

      
JOptionPane.showMessageDialog(frame,"Eggs are not supposed to be green.","A plain message", JOptionPane.PLAIN_MESSAGE);

//custom title, custom icon

            

JOptionPane.showMessageDialog(frame, "Eggs are not supposed to be green.", "Inane custom dialog", JOptionPane.INFORMATION_MESSAGE,icon);

抱歉!评论已关闭.