JMF如何找到所需的DLL
我正在开发一个从网络摄像头捕获照片的小应用程序。我使用 NetBeans 7.0 开发了这个应用程序。当我通过 NetBeans 运行时,应用程序工作正常。但是当在包含应用程序的可执行 jar 文件的 NetBeans 外部执行时,它无法检测到网络摄像头。我将必要的库(jmf.jar)放在lib文件夹中。问题仍然存在。据我所知,我必须放置一些dll,有人可以详细说明吗?提前致谢
I am developing a small app that captures photos from the web cam.I developed this app using NetBeans 7.0 .App worked fine when i runned through NetBeans.But when executed outside NetBeans in the dist folder which contains the executable jar file of the app it couldn't detect the webcam.I placed the necessary libraries (jmf.jar) in the lib folder.Still the problem exists.As I heard i have to place some dll's can anybody ans elaboratly? Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将 jmf.properties 文件包含在与可执行 jar 文件相同的目录中。
您将在 jmf 安装的 lib 文件夹中找到 jmf.properties 文件。对我来说它是:
C:\Program Files\JMF2.1.1e\lib\jmf.properties
。You must include the jmf.properties file in the same directory as your executable jar file.
You will find the jmf.properties file in the lib folder of your jmf installation. For me it was:
C:\Program Files\JMF2.1.1e\lib\jmf.properties
.