javax.swing.JOptionPane.showMessageDialog() 方法

//default title and icon          

javax.swing.JOptionPane.showMessageDialog() 方法_第1张图片

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

//custom title, warning icon

javax.swing.JOptionPane.showMessageDialog() 方法_第2张图片

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

//custom title, error icon

javax.swing.JOptionPane.showMessageDialog() 方法_第3张图片

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


//custom title, no icon

javax.swing.JOptionPane.showMessageDialog() 方法_第4张图片      
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);

你可能感兴趣的:(JAVA)