用Java打开.shp文件

时间:2017-03-27 16:51:42

标签: java shapefile geotools

我正在尝试使用geotools打开从http://www.naturalearthdata.com/downloads/10m-cultural-vectors/10m-admin-0-countries/下载的.shp文件。我的代码如下所示:

File file = new File("ne_10m_admin_0_countries.shp");
try{

        Map<String, URL> map = new HashMap<String, URL>(); 
        map.put("url", file.toURI().toURL());

        DataStore dataStore = DataStoreFinder.getDataStore(map);

        System.out.println(DataStoreFinder.getDataStore(map));
        System.out.println(map);

        SimpleFeatureSource featureSource = dataStore.getFeatureSource(dataStore.getTypeNames()[0]);        
        SimpleFeatureCollection collection = featureSource.getFeatures();

        ReferencedEnvelope env = collection.getBounds();
        double left = env.getMinX();
        double right = env.getMaxX();
        double top = env.getMaxY();
        double bottom = env.getMinY();
        System.out.println(left+" "+right);
    }catch(Exception e){
        System.out.println("ahoj" +e.getMessage());
    }

DataStoreFinder.getDataStore()方法返回null,这就是问题所在。你有什么想法我做错了吗?

我想打开并使用此shapefile以获取国家边界的坐标。

问题在于我没有包含其他所需的jar文件。它现在正在工作。

1 个答案:

答案 0 :(得分:0)

你在类路径上有gt-shapefile.jar吗?

GeoTools使用SPI查找根据您提供的参数图查找数据存储。另一种可能的检查是致电DataStoreFinder.getAllDatastores()以检查可用性:

Iterator<DataStoreFactorySpi> it = DataStoreFinder.getAllDataStores();
  while (it.hasNext()) {
    DataStoreFactorySpi fac = it.next();
    System.out.println(fac.getDisplayName());
  }

或者,如果您只想读取Shapefile,则直接创建ShapefileDataStore。

另外作为附注,我建议DataUtilities.fileToURL(file)使用file.toUri().toUrl(),因为它可以更好地处理带有空格的窗口和路径。