我在使用 ROME 创建基于 GML 的点参考时遇到了一些问题。我的代码将(希望!)解释我想要做得更好:
public static void geoRSSTest() {
SyndFeed feed = new SyndFeedImpl();
feed.setFeedType("rss_2.0");
// Set some simple fields
feed.setTitle("Sample Feed");
feed.setLink("http://example.com");
feed.setDescription("This is a sample RSS feed");
// Create list of entries
List entries = new ArrayList();
SyndEntry entry;
// Create entry
entry = new SyndEntryImpl();
entry.setTitle("Sample Entry");
entry.setPublishedDate(new Date());
// Add positional information
GeoRSSModule geoRSSModule = new GMLModuleImpl();
geoRSSModule.setPosition(new Position(54.2, 12.4));
entry.getModules().add(geoRSSModule);
// Add entry to the list
entries.add(entry);
// Add entry to the feed
feed.setEntries(entries);
// Write to console
SyndFeedOutput sfo = new SyndFeedOutput();
try {
System.out.println(sfo.outputString(feed));
} catch (FeedException ex) {
System.err.println(ex);
}
}
使用上面的代码,我将以下 XML 打印到控制台:
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
<channel>
<title>Sample Feed</title>
<link>http://example.com</link>
<description>This is a sample RSS feed</description>
<item>
<title>Sample Entry</title>
<pubDate>Tue, 26 May 2015 12:57:50 GMT</pubDate>
<dc:date>2015-05-26T12:57:50Z</dc:date>
</item>
</channel>
</rss>
如您所见,没有位置信息。
但是,更改GMLModuleImpl()
为SimpleModuleImpl()
提供以下内容:
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" version="2.0">
<channel>
<title>Sample Feed</title>
<link>http://example.com</link>
<description>This is a sample RSS feed</description>
<item>
<title>Sample Entry</title>
<pubDate>Tue, 26 May 2015 12:57:50 GMT</pubDate>
<dc:date>2015-05-26T12:57:50Z</dc:date>
<georss:point>54.2 12.4</georss:point>
</item>
</channel>
</rss>
可以看出,现在有一个<georss:point>
元素。
我正在使用 Rome 1.5.0 和 Rome Modules 1.5.0 到 Netbeans 8.0.2。
尝试使用创建位置信息时我错过了什么GMLModuleImpl()
吗?