vote up 0 vote down star
1

Recently I wrote an extremely basic Java Swing program with a couple of text fields and buttons. The program works fine for me on Ubuntu with Java 1.5. But when I try to run it on OSX (10.4), the main window is displayed correctly but the program seems unresponsive. Nothing seems to happen, no matter which button I click on.

I know next to nothing about Mac OSX, so is there something I might be doing wrong?

flag

69% accept rate
Could You reduce the code to a simple test case and post the code? – zoul Oct 22 '08 at 10:54
Which Java version are you running on OS X? – Uri Jan 5 at 20:06
I have the same issue. Running OSX 10.5.7, Java 1.6.0_13. – tuler Jun 19 at 18:34

4 Answers

vote up 2 vote down

Could it be that you are executing something off the Event-Dispatch Thread? For example, you might be creating, displaying and then modifying a JTextArea in the main thread.

link|flag
vote up 2 vote down

Normally Java programs work fine in OS X - for example, Sound Bridge Commander is a java app that works fine on Mac and Linux. I would definitely make sure the Mac box is fully up to date, though. You mentioned that it's running Tiger, which means that it is several years old, the JVM it has may be incompatible with the one you compiled with.

link|flag
vote up 0 vote down

Any chance you could put the code online somewhere so we could try it? I am actually using 10.4 as well so it would not be a problem.

link|flag
vote up 0 vote down

You may have SWT on the classpath. This sounds similar to a problem I had. If I remember correctly the mac SWT jar uses certain startup hooks to launch itself automatically. Then SWT interferes with Swing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.