0

我正在查看使用 Eclipse 的 Geotools 快速入门教程 http://docs.geotools.org/latest/userguide/tutorial/quickstart/eclipse.html 我遵循了所有步骤,一切顺利,直到我运行了快速入门课程

当我运行快速入门课程时。我收到了这个错误

Exception in thread "main" java.lang.NullPointerException
    at sun.awt.shell.Win32ShellFolder2.getFileSystemPath(Win32ShellFolder2.java:571)
    at sun.awt.shell.Win32ShellFolder2.access$400(Win32ShellFolder2.java:72)
    at sun.awt.shell.Win32ShellFolder2$2.call(Win32ShellFolder2.java:298)
    at sun.awt.shell.Win32ShellFolder2$2.call(Win32ShellFolder2.java:296)
    at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
    at java.util.concurrent.FutureTask.run(FutureTask.java:166)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
    at sun.awt.shell.Win32ShellFolderManager2$ComInvoker$3.run(Win32ShellFolderManager2.java:502)
    at java.lang.Thread.run(Thread.java:722)

我发现这种方法导致了问题 JFileDataStoreChooser.showOpenFile

除了使用上述方法的那一行之外,我注释掉了所有其他行,但仍然出现相同的错误。(如果我也评论了该行,则没有错误)

package org.geotools.tutorial;

import java.io.File;

import org.geotools.data.FileDataStore;
import org.geotools.data.FileDataStoreFinder;
import org.geotools.data.simple.SimpleFeatureSource;
import org.geotools.map.FeatureLayer;
import org.geotools.map.Layer;
import org.geotools.map.MapContent;
import org.geotools.styling.SLD;
import org.geotools.styling.Style;
import org.geotools.swing.JMapFrame;
import org.geotools.swing.data.JFileDataStoreChooser;

/**
 * Prompts the user for a shapefile and displays the contents on the screen in a map frame.
 * <p>
 * This is the GeoTools Quickstart application used in documentationa and tutorials. *
 */
public class Quickstart {

    /**
     * GeoTools Quickstart demo application. Prompts the user for a shapefile and displays its
     * contents on the screen in a map frame
     */
    public static void main(String[] args) throws Exception {
        // display a data store file chooser dialog for shapefiles
          /*********This is the line *********/
          File file = JFileDataStoreChooser.showOpenFile("shp", null);
          /***********************************/

//        if (file == null) {
//            return;
//        }
//
//        FileDataStore store = FileDataStoreFinder.getDataStore(file);
//        SimpleFeatureSource featureSource = store.getFeatureSource();
//
//        // Create a map content and add our shapefile to it
//        MapContent map = new MapContent();
//        map.setTitle("Quickstart");
//        
//        Style style = SLD.createSimpleStyle(featureSource.getSchema());
//        Layer layer = new FeatureLayer(featureSource, style);
//        map.addLayer(layer);
//
//        // Now display the map
//        JMapFrame.showMap(map);
    }

}

另外,在 pom.xml 中,我尝试了 8.0-M2 和 8-SNAPSHOT 版本。但没有运气...

有人有什么想法吗?模块 geotools.swing 有问题吗?

谢谢

4

2 回答 2

1

可能是sun.awt.shell.Win32ShellFolder2.getFileSystemPath触发 NPE 的方法的错误。

有人建议使用JDK 1.6.0u21 或更高版本来解决。

用关键字检查谷歌"NullPointerException sun.awt.shell.Win32ShellFolder2"

于 2011-10-13T08:17:19.690 回答
1

我也一直在尝试 Geotools 快速入门教程,我遇到了同样的问题。

我最后补充:

import org.geotools.data.shapefile.*;

和改变

FileDataStore store = FileDataStoreFinder.getDataStore(file);

经过

ShapefileDataStore store = new ShapefileDataStore(file.toURI().toURL());

它不能解决异常的问题,但可以作为替代方案。

于 2012-02-09T08:10:01.423 回答