我试图使人脸检测和比较代码。现在,对于该项目,我将使用ZZActiveX2.0。
因此,我使用jacob访问ActiveX。
我下载了jacob-1.19并将jacob-1.19-x86.dll复制到System32并在我的Java项目中注册了jacob-1.19.jar。
我检查了注册表中的应用程序clsid(HKEY_CLASSES_ROOT \ ACTIVEX.ActiveXCtrl.1 \ CLSID(Default)->“ {e77e4cc8-e879-4a72-850a-b824742ec5b7}”)。

import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.ComThread;
import com.jacob.com.Dispatch;
import com.jacob.com.Variant;

class ActiveXTest {
    public static void main(String[] args) {
        try {
            ActiveXComponent xl = new ActiveXComponent("{e77e4cc8-e879-4a72-850a-b824742ec5b7}");
            Dispatch xlo = xl.getObject();

        }
        catch (Exception e){
            e.printStackTrace();
        }

    }
}


但是此代码出现如下错误。

com.jacob.com.ComFailException: Can't get object clsid from progid
    at com.jacob.com.Dispatch.createInstanceNative(Native Method)
    at com.jacob.com.Dispatch.<init>(Dispatch.java:99)
    at com.jacob.activeX.ActiveXComponent.<init>(ActiveXComponent.java:58)
    at ActiveXTest.main(ActvieXTest.java:11)


我搜索了此错误,并看到了有关Word应用程序的示例项目。
我遵循了一些解决方案,但在我的项目中不起作用,有人建议使用regasm或AutoItx,但也不能使用。
您见过此类错误吗?您解决了这个问题吗?

最佳答案

您必须插入注册程序名称而不是clsid。

 ActiveXComponent activeXComponent = new ActiveXComponent("ACTIVEX.ActiveXCtrl.1");

关于java - java-无法访问ActiveX应用程序“com.jacob.com.ComFailException:无法从progid获取对象clsid”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59141760/

10-09 05:22