  | 
            
            //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);
            
             | 
        
    
 
 
更多:http://java.sun.com/docs/books/tutorial/uiswing/components/dialog.html
	posted on 2007-10-26 14:31 
lk 阅读(17447) 
评论(3)  编辑  收藏  所属分类: 
j2se