我有以下问题:
我想使用佳能EDSDK在Java (Windows)中运行一个photobooth应用程序。
但是,当我打开到照相机的连接时,我会得到以下错误:java.lang.UnsatisfiedLinkError:无法加载库'EDSDK/Dll/EDSDK.dll'
有办法手动设置路径到我的EDSDK库吗?
我正在使用edsdk4j-库:https://github.com/kritzikratzi/edsdk4j/
下面是代码:
static CanonCamera dslr;
static boolean connected = false;
public static void init() {
dslr = new CanonCamera(); //This line throws the error
dslr.openSession();
connected=true;
}https://stackoverflow.com/questions/45066103
复制相似问题