我想使用Geotools编写GML。不幸的是,我找不到有关GML Writer的文档(除了2006年以来的文档:http : //docs.codehaus.org/display/GEOTOOLS/WFS+++GML+DataStore)。
您能指出我的文档/示例吗?
我想使用Geotools编写GML。不幸的是,我找不到有关GML Writer的文档(除了2006年以来的文档:http : //docs.codehaus.org/display/GEOTOOLS/WFS+++GML+DataStore)。
您能指出我的文档/示例吗?
Answers:
我将尝试将geotools文档迁移到其他技术(而不是Wiki),以使代码示例不会过时。
现在完成更新(我收集了所有东西,以便所有几何示例都在一起):
这是该页面上的完整示例:
SimpleFeatureType TYPE = DataUtilities.createType("location", "geom:Point,name:String");
File locationFile = new File("location.xsd");
locationFile = locationFile.getCanonicalFile();
locationFile.createNewFile();
URL locationURL = locationFile.toURI().toURL();
URL baseURL = locationFile.getParentFile().toURI().toURL();
FileOutputStream xsd = new FileOutputStream(locationFile);
GML encode = new GML(Version.GML2);
encode.setBaseURL(baseURL);
encode.setNamespace("location", locationURL.toExternalForm());
encode.encode(xsd, TYPE);
xsd.close();
SimpleFeatureCollection collection = FeatureCollections.newCollection("internal");
WKTReader2 wkt = new WKTReader2();
collection.add(SimpleFeatureBuilder.build(TYPE, new Object[] { wkt.read("POINT (1 2)"),"name1" }, null));
collection.add(SimpleFeatureBuilder.build(TYPE, new Object[] { wkt.read("POINT (4 4)"),"name2" }, null));
ByteArrayOutputStream xml = new ByteArrayOutputStream();
GML encode2 = new GML(Version.GML2);
encode2.setBaseURL(baseURL);
encode2.setNamespace("location", "location.xsd");
encode2.encode(out2, collection);
xml.close();
String gml = xml.toString();
源代码附带的测试用例是有关如何使用4种不同的GML解析技术的其他示例。
两种GTXML技术基本上是SAX解析器的最佳组成部分的结合,能够确定使用哪个代码片段(称为绑定)来解析每个元素(基于在元素中查找元素)模式)。
您也可以查看http://svn.osgeo.org/geotools/trunk/modules/library/xml/src/test/java/org/geotools/GMLTest.java,以了解测试是如何进行的。关键部分似乎是:
GML encode2 = new GML(Version.GML2);
encode2.setBaseURL(baseURL);
encode2.setNamespace("location", "location.xsd");
encode2.encode(out2, collection);
out.close();
其中collection是featureCollection。
尝试:
//create the encoder with the gml 2.0 configuration
org.geotools.xml.Configuration configuration = new org.geotools.gml2.GMLConfiguration();
org.geotools.xml.Encoder encoder = new org.geotools.xml.Encoder( configuration );
//output stream to serialize to
OutputStream xml = ...
//encode
encoder.encode( featureCollection, new QName( "http://www.geotools.org/test", "featureType1"));
说明文件: