1

我的 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)

任何想法如何纠正它

4

1 回答 1

0

您可能需要将jdic.dll添加到项目的根目录。

然后将IeEmbed.exeMozEmbed.exe添加到 jdicXXX.jar 所在的同一目录中。

您可以从以下位置下载它们

https://www.dropbox.com/s/qt3ax417t994q4h/JDIC.zip?dl=0

于 2015-07-14T11:15:13.313 回答