DanMatlin
DanMatlin

Reputation: 1252

JDIC Library Path

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

Upvotes: 1

Views: 1446

Answers (1)

Isuru Samarasinghe
Isuru Samarasinghe

Reputation: 101

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

Upvotes: 0

Related Questions