In this example we are going to see how to use Java Message Dialog Box.
Java Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 | import javax.swing.JOptionPane; public class Main { public static void main(String[] argv) throws Exception { JOptionPane.showMessageDialog(null, "Code Java Program Examples."); } } |
Output: