由于我花了大量时间调试此问题,所以我认为尽管存在这个问题,我仍将在这里分享我的解决方案。Srikanth的第二个链接特别有用。
错误原因JAI的一些深层内部结构要求供应商名称,尤其是javax.imageio.spi.IIOServiceProvider,许多(全部?)图像读取器都将其用作底层IO。字符串是什么并不挑剔,但不能为null。
ImageReaderSpi类不是对供应商名称进行硬编码,而是从sun.media.imageioimpl.common.PackageUtil.getVendor()获取供应商名称。这反过来
从jar的MANIFEST.MF中读取它 。通常,您链接到标准的jai-
imageio包装,因此会读取Sun的供应商信息。但是,由于要创建一个胖jar文件,因此您用自己的Sun的MANIFEST.MF替换了缺少所需信息的文件。
在MANIFEST.MF文件中包括以下几行:
规范标题:Java Advanced Imaging Image I / O工具规格版本:1.1规范供应商:Sun Microsystems,Inc.实施标题:com.sun.media.imageio实施版本:1.1实施厂商:Sun Microsystems,Inc.
每个属性的值可以是任何值(我使用了我的特定应用程序/版本/公司),只要定义了全部六个即可。
马文如果您使用的是maven的程序集插件来创建胖罐,则maven可以自动包含正确的版本号等。
pom.xml使用以下
<archive>部分更新您的内容:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Specification-Vendor>MyCompany</Specification-Vendor> <Implementation-Vendor>MyCompany</Implementation-Vendor> </manifestEntries> </archive> </configuration> <executions> <execution> <id>create-my-bundle</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions></plugin>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)