javax.swing.JOptionPane' not found in import.
i tried this program in linux
import javax.swing.JOptionPane;
public class Welcome4 {
public static void main (String args[])
{
JOptionPane.showMessageDialog(
null, "Welcome\nto\nJava\nProgramming!");
System.exit (0); //terminate program
}
when i typed javac Welcome4.java in the terminal the result is
Welcome4.java:1: Class or interface `javax.swing.JOptionPane' not found in import.
import javax.swing.JOptionPane;
^
1 error
but this goes well in windows.
any help will be very much appreciated

