JDIC 库路径
我的 java 应用程序中有以下行
webBrowser = new WebBrowser(new URL("http://java.net"));
它导致以下错误
org.jdesktop.jdic.init.JdicInitException: java.lang.UnsatisfiedLinkError: no jdic in java.library.path
at org.jdesktop.jdic.init.JdicManager.initBrowserNative(Unknown Source)
at org.jdesktop.jdic.browser.WebBrowser.<clinit>(Unknown Source)
at Leech.leecher$1.actionPerformed(leecher.java:41)
知道如何纠正它
I have the following line in my java app
webBrowser = new WebBrowser(new URL("http://java.net"));
It is causing the following error
org.jdesktop.jdic.init.JdicInitException: java.lang.UnsatisfiedLinkError: no jdic in java.library.path
at org.jdesktop.jdic.init.JdicManager.initBrowserNative(Unknown Source)
at org.jdesktop.jdic.browser.WebBrowser.<clinit>(Unknown Source)
at Leech.leecher$1.actionPerformed(leecher.java:41)
Any idea how to rectify it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要将 jdic.dll 添加到项目的根目录。
然后将IeEmbed.exe和MozEmbed.exe添加到jdicXXX.jar所在的同一目录中。
您可以从以下位置下载它们
https://www.dropbox.com/ s/qt3ax417t994q4h/JDIC.zip?dl=0
You may need to add jdic.dll to the root of your Project.
Then add IeEmbed.exe and MozEmbed.exe to the same directory where jdicXXX.jar locate.
You can download them from below location
https://www.dropbox.com/s/qt3ax417t994q4h/JDIC.zip?dl=0