package helloworld; import javax.swing.JOptionPane; public class helloworld { public static void main(String[] args){ JOptionPane.showMessageDialog(null, "Hello World!", "Hello World!",JOptionPane.PLAIN_MESSAGE); } }