应用程序客户端中的本机库
我在从 glassfish 服务器部署的应用程序中使用 jogl 。 我已经在 jse 中使用 jogl 测试了该部分,它工作正常。 当我粘贴代码并添加库并通过 netbeans 运行程序时,它不起作用。 我得到这个例外: 线程“AWT-EventQueue-0”java.lang.UnsatisfiedLinkError中出现异常:java.library.path中没有jogl
我可以做什么来解决这个问题?
谢谢
I'm using jogl in an application that is deploeyd from a glassfish server .
I have tested the part using jogl in a jse and it works fine.
When i paste the code and add the libraries and run the programm via netbeans it didn't work.
I get this exception:
Exception in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError: no jogl in java.library.path
What can i do to fix this problems ?
Thanks
在 NetBeans 中的“文件/项目属性”下,从“类别”树中选择“运行”。在“VM 选项”框中,添加
-Djava.library.path="<库的完整路径>"
并带引号。In NetBeans under File / Project Properties, select "Run" from the "Categories" tree. In the "VM Options" box, add
-Djava.library.path="<full path to your library>"
with the quotation marks.