基本 JOGL 程序 java.lang.NoClassDefFoundError
我正在尝试开始使用 LWJGL 来显示一些 2D 图形。我之前使用 openGL 编写过(在 C 中),但我使用的是找到的代码
Exception in thread "main" java.lang.NoClassDefFoundError: Could not initialize class org.lwjgl.opengl.Display
at Game.cleanup(Game.java:105)
at Game.main(Game.java:40)
如果我注释该行,我只会在其他地方得到一个 ClassLoader,但仍然包含 Display 类。我已经尝试了 .jar 位置等的各种配置,但似乎没有什么可以解决这个问题。
我在 Mac OS 10.6.6 上使用 Eclipse Helios
I'm trying to start using LWJGL to display some 2D graphics. I've written using openGL before (in C) but I'm using the code found here just to learn how to make it work. I import the .jar's and the program compiles fine but I get the runtime error:
Exception in thread "main" java.lang.NoClassDefFoundError: Could not initialize class org.lwjgl.opengl.Display
at Game.cleanup(Game.java:105)
at Game.main(Game.java:40)
If I comment that line I just get a ClassLoader somewhere else but still with the Display class. I've tried various configurations of the .jar locations etc. but nothing seems to resolve this.
I'm using Eclipse Helios on Mac OS 10.6.6
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有将 jar 文件链接到本机二进制文件。我刚刚添加了它,效果很好。
I was not linking the jar files to the native binaries. I just added that and it worked fine.