Exception in thread "main" com.lti.civil.CaptureException: java.lang.UnsatisfiedLinkError: no civil in java.library.path
at com.lti.civil.impl.jni.NativeCaptureSystemFactory.createCaptureSystem(NativeCaptureSystemFactory.java:24)
at pst.CaptureSystemTest.main(CaptureSystemTest.java:27)
Caused by: java.lang.UnsatisfiedLinkError: no civil in java.library.path
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at com.lti.civil.impl.jni.NativeCaptureSystemFactory.createCaptureSystem(NativeCaptureSystemFactory.java:21)
... 1 more
我正在尝试运行lti-civil下载随附的
CaptureSystemTest.java
。我将该类添加到了我自己的Eclipse
包中,并且添加了lti-civil下载随附的所有jar。我在堆栈上看到了与此类似的问题,唯一的答案是将以下代码添加到程序中:
System.setProperty( "java.library.path", "C:/Work/lti-civil/native/win32-x86/" );
Field fieldSysPath = ClassLoader.class.getDeclaredField( "sys_paths" );
fieldSysPath.setAccessible( true );
fieldSysPath.set( null, null );
但是,Eclipse将
Field
标记为错误,给出了18条导入建议。我的问题是:
如何开始使用LTI-CIVIL进行应用程序开发?
我的意思是,我需要做什么?像加罐子等吗?
最佳答案
我不知道什么是LTI-CIVIL,但通常将第三方库打包到jar中,您必须将其包括在构建类路径中。搜索可以将jar添加到类路径的各种方法,例如this教程。