Geotoolsを使用してGMLを書きたいのですが。残念ながら、GMLライターに関するドキュメントが見つかりません(2006年のドキュメントを除く:http : //docs.codehaus.org/display/GEOTOOLS/WFS+++GML+DataStore)。
ドキュメント/例を教えていただけますか?
Geotoolsを使用してGMLを書きたいのですが。残念ながら、GMLライターに関するドキュメントが見つかりません(2006年のドキュメントを除く:http : //docs.codehaus.org/display/GEOTOOLS/WFS+++GML+DataStore)。
ドキュメント/例を教えていただけますか?
回答:
コード例が古くならないように、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解析技術の使用方法の追加例は、ソースコードに含まれているテストケースです。
2つの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();
コレクションは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"));
ドキュメンテーション: