我正在尝试在 android 上使用 OpenSesame。因此,我在我的项目中包含了 opensesame-onejar。
运行项目时抛出异常:java.lang.NoClassDefFoundError: javax.imageio.spi.ServiceRegistry throw in the info.aduna.lang.service.ServiceRegistry.(ServiceRegistry.java:37)。
在我的代码中,当我想添加一个 rdf 文件时,它会出现: con.add(file, baseURI, RDFFormat.NTRIPLES);
我正在创建我的存储库,如下所示: Repository myRepository = new SailRepository(new MemoryStore()); myRepository.initialize(); RepositoryConnection con = myRepository.getConnection();
你能解释一下我应该如何重写 ServiceRegistry 吗?
谢谢!