mailtoabhi15 / rome

Java framework for RSS and Atom feeds

Home Page:https://rometools.github.io/rome

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rome

Build Status Maven Central

Rome is a Java framework for RSS and Atom feeds. The framework consist of several modules:

Module Description
rome Library for generating and parsing RSS and Atom feeds.
rome-modules Generators and parsers for extensions like MediaRSS, GeoRSS and others.
rome-opml OPML parsers and tools.

Deprecated modules: rome-fetcher, rome-certiorem, rome-certiorem-webapp and rome-propono.

Examples

Parse a feed:

String url = "http://stackoverflow.com/feeds/tag?tagnames=rome";
SyndFeed feed = new SyndFeedInput().build(new XmlReader(new URL(url)));
System.out.println(feed.getTitle());

Generate a feed:

SyndFeed feed = new SyndFeedImpl();
feed.setFeedType("rss_2.0");
feed.setTitle("test-title");
feed.setDescription("test-description");
feed.setLink("https://example.org");
System.out.println(new SyndFeedOutput().outputString(feed));

About

Java framework for RSS and Atom feeds

https://rometools.github.io/rome

License:Apache License 2.0


Languages

Language:Java 99.1%Language:HTML 0.9%Language:CSS 0.0%