I have a java program with swing gui and graphics2d and it runs fine from Eclipse but when I export it and run it (on the same machine) I get this error:
Exception in thread "main" java.awt.HeadlessException
at java.awt.GraphicsEnvironment.checkHeadless(GraphicsEnvironment.java:202)
at java.awt.Window.<init>(Window.java:534)
at java.awt.Frame.<init>(Frame.java:420)
at javax.swing.JFrame.<init>(JFrame.java:224)
at com.lunumia.frame.MainFrame.createFrame(MainFrame.java:17)
at com.lunumia.start.Lunumia.main(Lunumia.java:26)
And it's a macbook pro.. not a server or anything.
Edit: Line 26:
MainFrame.createFrame();
in createFrame():
frame = new JFrame("Lunumia");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(900, 600);
frame.setLocationRelativeTo(null);
panel = new PanelLogin(frame);
frame.addKeyListener(new KeyboardListener());
frame.addMouseListener(new MouseClickListener(panel));
frame.add(panel);
frame.setVisible(true);
EDIT: Found out caused by Java 1.7, works on computers without. However, I cannot downgrade, it literally just says that java 1.7 internal is installed when I delete java. How do i get this to work?