What could be the problem? I have added the javac file path in the environment variable. The JOptionPane showMesssageDialog symbol is not found!!
import javax.swing.JOptionPane;
class MassageDialog1{
public static void main(String[] args)
{
JOptionPane.showMessageDialog(null,"Wrong Password");
}
}
Here, ClassNotFoundException
More Error:
What is going on here??