What is the reason for the following error I am having:
Exception in thread "main" java.lang.UnsatisfiedLinkError: Could not load SWT library.
I am using Eclipse 3.5 SE on Ubuntu 9.04 Jaunty.
How can I resolve this error?
|
|
|
I had same problem with Oracle Java 7 and Eclipse on 32-bit system.
Maybe this can be done reconfiguring Java alternatives or what. |
|||||||||||
|
|
This means the native libraries could not be found. |
||||
|
|
|
What versions of Java and Eclipse are you using, and are they 32-bit or 64-bit, and how did you install them? Eclipse uses its own GUI library called SWT (it doesn't use Java's AWT or Swing), and it needs some native (non-Java) libraries for this. If you have 32-bit Java installed, you need 32-bit Eclipse; if you have 64-bit Java installed, you need 64-bit Eclipse (note, the Eclipse downloads page has 32-bit and 64-bit versions for Linux). (Note that it doesn't depend on whether your Linux OS is 32-bit or 64-bit, but on whether your Java is). |
|||||
|
|
I had a similar issue when running Eclipse remotely on a server via a "ssh -X" tunnel. I resolved it using "sudo apt-get install libswt-gtk-3.6-java" on the server. |
|||
|
|
|
I believe Mikolaj Lechtanski's workaround is more elegant.
|
|||
|
|
|
Happened to me when starting some GUI java application on a headless server using X11 forwarding while only having
|
|||
|
|