Hello,
Can anyone help with an error I'm getting trying to run a simple app? I have just installed jdk1.5.0_03
The error is "Exception in
java "main" java.lang.UnsupportedClassVersionError: SimpleGui1 (Unsupported major.minor version 49.0)
The code is:
import javax.swing.*;
public class SimpleGui1 {
public static void main (
String[] args) {
JFrame frame = new JFrame();
JButton button = new JButton("click me");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(button);
frame.setSize(300,300);
frame.setVisible(true);
}
}
Thanks in advance !