首先,请原谅您可能会在我的邮件中看到的任何错误,我不是母语人士。
我正在寻求有关 GeoTools 的帮助。我一直在将它用于学校的项目,直到现在我几乎没有问题。
但是现在我的项目已经完成,我尝试使用 maven 的 shade 插件构建一个可执行 jar,就像 GeoTools 的常见问题解答中显示的那样。
这是我的问题,当我尝试使用输入“mvn package”时创建的 jar 时,我收到此错误:
java.lang.UnsupportedOperationException: Trying to get a reader from an unknown format. at org.geotools.coverage.grid.io.UnknownFormat.getReader(UnknownFormat.j ava:62) at coeurDLL.SMap.<init>(SMap.java:44) at coeurDLL.CoeurController.initialize(CoeurController.java:103) at coeur.Interface.getMapsAndDisplay(Interface.java:152) at coeur.Interface.<init>(Interface.java:948) at coeur.Interface.main(Interface.java:957) java.lang.NullPointerException at coeurDLL.CoeurController.getColumnsFields(CoeurController.java:225) at coeur.Interface.setControlPanel(Interface.java:327) at coeur.Interface.displayMainWindow(Interface.java:185) at coeur.Interface.getMapsAndDisplay(Interface.java:162) at coeur.Interface.<init>(Interface.java:948) at coeur.Interface.main(Interface.java:957)
当我尝试使用“reader.read(null)”方法读取 GeoTif 文件时会发生这种情况。当然我在Eclipse上执行项目时没有这个问题。
我在某处读到这可能是一个依赖问题,但我看不出我可能错过了什么。
一些可能有用的细节: - 我使用的是 GeoTools 版本 12-RC1 - 我没有使用 JAI 库,我在 Java Pure 模式下工作。它允许我使用 64 位 jdk。我好奇地尝试了一个 32 位 jdk,但我仍然有同样的问题。- 我正在使用 Windows 7,但它不应该有任何区别。
这是我的 pom.xml 的内容:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>pfe.coeur</groupId>
<artifactId>coeur</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>tuto</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<geotools.version>12-RC1</geotools.version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<encoding>UTF-8</encoding>
<target>1.8</target>
<source>1.8</source>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<!-- This bit sets the main class for the executable jar as you otherwise -->
<!-- would with the assembly plugin -->
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries>
<Main-Class>coeur.Interface</Main-Class>
</manifestEntries>
</transformer>
<!-- This bit merges the various GeoTools META-INF/services files -->
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-coverage</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-render</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-shapefile</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-swing</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-epsg-hsql</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-geotiff</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-image</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-wms</artifactId>
<version>${geotools.version}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net repository</name>
<url>http://download.java.net/maven/2</url>
</repository>
<repository>
<id>osgeo</id>
<name>Open Source Geospatial Foundation Repository</name>
<url>http://download.osgeo.org/webdav/geotools/</url>
</repository>
</repositories>
</project>
当我从我的依赖项中删除 gt:geotiff 时,我会在 Eclipse 上遇到同样的错误。但是 jar 确实包含这种依赖关系。
如果有人可以帮助我解决这个问题,我将不胜感激。我需要这个可执行 jar 来完成我的项目,但我没有太多时间来获取它。
问候,