This error is observed when either the library wasn't found or the library exists but couldn't be opened.
0
votes
0answers
13 views
dll already loaded in another classloader in netbeans using tomcat
Currently I develop an java web application using spring mvc, netbeans as IDE, and tomcat as web server.
I want to use 3rd party jar and it seems no problem occurs when I use the jar in simple java ...
0
votes
0answers
20 views
UnsatisfiedLinkError with javafx
I am trying do learn javafx. I have a very simple program to print "Hello World" once in the main method (as a test) and once in the Application. The code looks like this:
import javafx.stage.*;
...
0
votes
1answer
13 views
UnsatisfiedLinkError after changing Eclipse workspace
I've been using the lwjgl and Slick2D libraries in something I'm working on. At some point I needed to split up my Minecraft Bukkit plugins from my other java programs, so I moved the java programs to ...
1
vote
1answer
90 views
UnsatisfiedLinkError: Native method not found - Android
I am developing an android app using C++ code. Trying to use JNI but failed.
The code in myFirstApp.cpp
JNIEXPORT jint JNICALL Java_com_example_myfirstapp_CreateApp_findMarkersNative(
JNIEnv* ...
0
votes
1answer
86 views
Native method not found org.opencv.core.mat.n_mat-Android
I followed all steps when dealing with Mat including adding it to AsyncTask when calling but still the same error which is native method not found org.opencv.core.mat.n_mat
Here's the code:
package ...
0
votes
0answers
32 views
JNI UnsatisfiedLinkError - Android
I'm a beginner in jni and I'm trying to load a library but I keep getting UnSatisfiedLinkError in the Log. I've checked multiple times all of my files but still the same error.
Android.mk
LOCAL_PATH ...
0
votes
0answers
38 views
UnsatisfiedLinkError: no lwjgl in java.library.path using Slick2D and LWJGL
Quick question about LWJGL and how she works. I know there's a thread on this already, I looked at it, but I still don't understand it. If I should post there instead of here, I apologize. It's my ...
0
votes
1answer
83 views
Trying to make java application (Executable Jar) that uses OpenCV portable. Getting unsatisfied link error
I have made a application to grab video from a webcam and detect motion using OpenCV and JavaCV. I am trying to export as an executable jar using eclipse. The program runs fine in eclipse as does the ...
0
votes
0answers
30 views
Load shared library from distributed cache
I have a shared library that I copied to hdfs at
/user/uokuyucu/lib/libxxx.so
and I have a WordCount.java with the identical code from tutorial plus my own FileInputFormat class called ...
1
vote
2answers
98 views
System.loadLibrary does not work. UnsatisfiedLinkError for the second lib in chain
I have java program Client.class that uses cpp shared library libclient.so via JNI.
libclient.so is built as shared and uses cpp shared library libhttp.so.
libclient.so and libhttp.so are placed in ...
0
votes
2answers
79 views
Load DLL in Netbeans
I am trying to load the DLL files in Netbeans 7.0.1,
Code is
dll = (RRHFEK02DLL)Native.loadLibrary("RRHFEK02DLL.dll", RRHFEK02DLL.class);
utility = ...
1
vote
1answer
36 views
java.lang.UnsatisfiedLinkError: debugLevel
Alright, I've been going thru posts left and right trying to figure out this error.. I've managed to fix a few errors, but this is just driving me nuts.. it has almost no information.. or atleast none ...
0
votes
2answers
40 views
UnsatisfiedLinkError when calling Native code build with Android NDK
I have a button in an simple android app that I am using to call a native function. The button in main activity calls a function of HADriver.java. This function in turn calls on a JNI function in ...
0
votes
1answer
41 views
UnsatisfiedLinkError with JACOB and jre 1.7
I put together a program that uses JACOB to access iTunes ... It works fine in Eclipse but when I export it and run it in the command prompt I get an unsatisfied link error telling me that ...
0
votes
1answer
22 views
Java CDF file Parsing with UnsatisfiedLinkError
I am working on a CDF(file mastercard uses) file parser in Java and I am using the API found here. In order to use this API you need the jar file..
I don't understand how I am getting this exception ...
0
votes
1answer
55 views
DRMAA and the shared.library.path
I try to use the sun grid engine with the DRMAA api by following the tutorial found at: http://gridscheduler.sourceforge.net/howto/drmaa_java.html. For this I need to load the c library located in ...
1
vote
2answers
80 views
Using (nb_)setarg/3 with gnu.prolog in Java
I'm currently trying to use prolog out of java using gnu.prolog (http://www.gnu.org/software/gnuprologjava/).
Thanks to the great help of CapelliC I now have a prolog program which works perfect for ...
1
vote
1answer
68 views
UnsatisfiedLinkError: The library loads but I still get a link error
I have two Eclipse plugins:
plugin-1: provides a package in .jar to other plugins. (a Java Wrapper for a C++ library) This plugin was created by clicking File->New->Other->Plug-in from Existing JAR ...
0
votes
0answers
26 views
Causes of a UnsatisfiedLinkError
I have a C++ code that I compile with Visual Studio 2012 as a .dll.
Then, I load that library in a Java application with the System.loadLibrary method.
I have done it lots of time, compiling the ...
1
vote
1answer
159 views
java.lang.UnsatisfiedLinkError when i load a jar .
I ' m programming with JSE and i'm loading a jar (that i do ) with another java program .
The problem is in classLoader of java virtual machine i think .
i said that beacuse i tried to exec the ...
1
vote
1answer
60 views
UnsatifiedLinkException java — caused by LTI-CIVIL
Exception in thread "main" com.lti.civil.CaptureException: java.lang.UnsatisfiedLinkError: no civil in java.library.path
at ...
0
votes
1answer
136 views
JAVA/JNI - Load native DLL with circular dependency
I try to load c++ code in my java project with JNI. I have many several DLL to load, and unfortunately there is a cyclic dependency between two of them : dll A needs dll B which in turns need dll A !
...
1
vote
1answer
228 views
Error in dropboxSync: findlibrary returned null
Error log:
03-25 09:46:59.022: I/com.dropbox.sync.android.CoreAccountManager(2217): Prepared cache dir '/data/data/com.company.testapp/app_DropboxSyncCache/my-dropxbox-key'.
03-25 09:46:59.022: ...
0
votes
1answer
77 views
UnsatisfiedLinkError with sqlite4java Jar on Mac OS X NetBeans
I am getting experiencing a similar problem to this question:
UnsatisfiedLinkError with sqlite4java Jar on Mac OS X
However, I am running on a Mac, and I have the relevant libraries in my lib ...
1
vote
1answer
52 views
Jni not working
This is my Java code.
class NativePrompt {
private native String getInput(String prompt); //native method
static //static initializer code
{
...
1
vote
1answer
249 views
Matlab + Java + JNI: java.lang.UnsatisfiedLinkError
Using Matlab with Java and JNI, I'm getting an UnsatisfiedLinkError that I cannot fathom.
First I load a native library from the Matlab command line. It works:
>> ...
2
votes
0answers
138 views
Exception in thread “main” java.lang.UnsatisfiedLinkError: RunnerClass.parsecmdline(ILjava/lang/String;)V
I have a test case where I am trying to access the C code from my Java program using JNI. Steps involved are as follows :
1. A Java program calling the native methods :
public class RunnerClass{
...
0
votes
0answers
60 views
java.Lang.Unsatisfied link error: n_VideoCapture
I am writing an android app that does speed sign detection and am trying to capture a video to use real time image processing. Here is where i try to capture the video:
protected Bitmap ...
0
votes
0answers
48 views
bluecove app is not working
I am trying to create a desktop bluetooth application using bluecove.
I have downloaded the bluecove snapshot and imported it to my project in eclipse.
When the program is executed inside eclipse it ...
0
votes
0answers
127 views
the JAR file tomcat-apr-5.5.23.jar has no source attachment
OBJECTIVE :
There's an issue I am trying to get through. I have made use of the "tomcat-apr" library in my JAVA program. The build-path for the library is properly configured and class files in this ...
0
votes
0answers
212 views
UnsatisfiedLinkError in opencv-javacv development
im trying to make an application using Opencv-2.4.0 and Javacv-0.3. I configured both as per the spec provided in the java-cv google page.I've got a problem now, when it runs i got the following ...
1
vote
2answers
170 views
Why am I getting UnsatisfiedLinkError in below program?
Error is :Exception in thread "main" java.lang.UnsatisfiedLinkError:
jpcap.JpcapCaptor.getDeviceList()[Ljpcap/NetworkInterface; at
jpcap.JpcapCaptor.getDeviceList(Native Method) at
...
0
votes
0answers
59 views
How to solve java.lang.UnsatisfiedLinkError on mac 10.8 when starting android SDK manager
I am trying to install Android SDK on mac 10.8.2. After I downloaded the files, I wanted to start SDK Manager by executing the file "android":
./tools/android
Then I got the following error ...
1
vote
0answers
174 views
Library not found (but found in another activity) using OpenCV and Android NDK
I have went through a myriad of resources (including, but not limited to, OpenCV4Android's Google group, StackOverflow and OpenCV's answers page trying to resolve this, reaching a point where ...
0
votes
0answers
76 views
JAVA UnsatisfiedLinkError with JOGL1.1.1a
As an IT student my professor gave me some work to do. It's about using JOGL1.1.1a (his code is really old...) in Eclipse. I'm trying to execute his classes but I still having this error I can't ...
1
vote
1answer
126 views
Issues calling C++ from Java code (Android)
I am attempting to call native functions from android code, using the ndk, and am running into some issues. The app will run for a short amount of time, then an error appears indicating that is "has ...
0
votes
0answers
259 views
UnsatisfiedLinkError: no j3dcore-ogl in java.library.path
I have a project in eclipse, runs perfectly fine in the ide when I click run, but I need to export it into a runnable jar file which also works fine. But when I try to run it it throws an exception:
...
0
votes
1answer
236 views
Eclipse won't start after upgrading to windows 8 [closed]
Every time I try to start up eclipse juno it just tells me to look at this log.
SESSION 2013-01-23 11:30:27.424 -----------------------------------------------
eclipse.buildId=M20120914-1800
...
0
votes
1answer
245 views
UnsatisfiedLinkError + JNLP + Applet + DLL
I have created a JNLP to load the applet and some native DLL files. Following are the codes of each components
JNLP
<?xml version="1.0" encoding="UTF-8"?>
<!-- href attribute contains ...
1
vote
1answer
121 views
UnsatisfiedLinkError with sqlite4java Jar on Mac OS X
I'm using the sqlite4java library in my Java application and it works just fine when I'm running it in Eclipse. But when I build the runnable JAR and try to run it on Mac OS X, I get the following ...
1
vote
0answers
647 views
Getting java.lang.ExceptionInInitializerError and java.lang.UnsatisfiedLinkError
I have project source as well as apk file. if i am directly installing APK on emulator then its working fine but while running the application from eclipse i am getting following errors.
01-12 ...
0
votes
2answers
68 views
UnsatisfiedLinkError when switch from Java 1.6.31 to Java 1.6.32+
Trying to use such tools as SVNKit and Cobertura i seem to have come across an error
java.lang.UnsatisfiedLinkError: java.io.WinNTFileSystem.createFileExclusively(Ljava/lang/String;)Z
Does anyone ...
1
vote
1answer
307 views
Including shared objects that library uses in Android project
My Android project is using an Android library project that has native code and I'm getting an UnsatisifiedLinkError from a native function that library uses.
I've included in the Android.mk file of ...
1
vote
2answers
418 views
java VLCJ tutorial java.lang.UnsatisfiedLinkError
I'm trying to use VLCJ, and got stuck on their first tutorial.
Here's my code:
package vlcj.tutorial1;
import uk.co.caprica.vlcj.binding.LibVlc;
import uk.co.caprica.vlcj.runtime.RuntimeUtil;
...
0
votes
2answers
91 views
UnsatisfiedLinkError when calling native function
I can succesfully load native library with System.loadLibrary(""), but when I call native method from that library, I receive UnsatisfiedLinkError, no implementation found for that method.
But this ...
0
votes
0answers
92 views
UnsatisfiedLinkError : no j2pcsc in java.library.path
I get this message error while calling javax.smartcardio.TerminalFactory
String type = "PC/SC";
java.security.Provider provider = (java.security.Provider) ...
0
votes
0answers
158 views
Applet. UnsatisfiedLinkError when loading native .dll
I have an applet with .jnlp file, and I want to use native .dll inside applet. So I inserted native .dll in root of .jar and in jnlp-file file I added this line:
<nativelib ...
1
vote
0answers
919 views
java.lang.UnsatisfiedLinkError: Cannot load 64-bit SWT libraries on 32-bit JVM
A colleague had following exception after updating a project from the repository:
Exception in thread "main" java.lang.UnsatisfiedLinkError:
Cannot load 64-bit SWT libraries on 32-bit JVM
...
2
votes
1answer
129 views
load java native file lib
I would like to use some native files and use some files out of an android project. I need this files for my own java project and need to import the lib.
I am trying to load the lib with:
static
{
...
1
vote
0answers
94 views
Java UnsatisfiedLinkError Mac OSX
I have a Java app that works fine with Java 1.6 on OSX. However once you update to java latest version (1.7) it stops working and gives out the following error:
java.lang.UnsatisfiedLinkError: ...

