javax.swing.JOptionPane.showMessageDialog() 方法

 //default title and icon           

javax.swing.JOptionPane.showMessageDialog() 方法 - 再见理想 - 再见理想 

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

//custom title, warning icon 

javax.swing.JOptionPane.showMessageDialog() 方法 - 再见理想 - 再见理想 

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

//custom title, error icon 

javax.swing.JOptionPane.showMessageDialog() 方法 - 再见理想 - 再见理想 

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


//custom title, no icon 

javax.swing.JOptionPane.showMessageDialog() 方法 - 再见理想 - 再见理想       
JOptionPane.showMessageDialog(frame,"Eggs are not supposed to be green.","A plain message", JOptionPane.PLAIN_MESSAGE); 

//custom title, custom icon 
javax.swing.JOptionPane.showMessageDialog() 方法 - 再见理想 - 再见理想             

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

原文地址:https://www.cnblogs.com/shy1766IT/p/3032168.html