I am trying to use Rome for parsing some rss feeds. One of the rss feeds says specifies 0.91 as the version and no custom xml namespace is defined but the entries still have a custom element in them. Can I use Rome to parse such custom tags without any defined namespace?
Thanks.
Yes. You need to write a custom parser to do it.
Let's say you want to handle the elements
customString
andcustomDate
. Start by extending the Item class to store the custom elements.Then write the parser. You also need to handle any standard elements you want to parse.
Finally you need to define your parser in a
rome.properties
file along with parsers for any other type of feed you want to handle.