Hello Fellow Java Users.
I am trying to get into JOGL so I can create demos and basically play around with it. I am having a issue installing JOGL and running it.
My Setup: Windows XP, JCreator LE 2.5.0 , Java SDK 1.5
I can’t seem to get the HelloWorld example to run.
In Jcreator it will compile fine, but when I try to run it from the IDE it doesn’t work.
I put the jogl.jar in: D:\Program Files\Java\jdk1.5.0_03\jre\lib\ext
I also put the dll in:D:\Program Files\Java\jdk1.5.0_03\jre\bin
I also added the jar file to the library tab in the project settings inside Jcreator
The error message I get is:
Exception in thread "main" java.lang.UnsatisfiedLinkError: D:\Program Files\Java
\jdk1.5.0_03\jre\bin\jogl.dll: Can't find dependent libraries
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1668)
at java.lang.Runtime.loadLibrary0(Runtime.java:822)
at java.lang.System.loadLibrary(System.java:992)
at HelloWorld.main(HelloWorld.java:7)
Press any key to continue...
Thanks in advance.