vote up 2 vote down star
1

I'm looking for a simple line or two of code that will grab an rss feed like this php line: $feed = "URL" from within a scala object.

I'm using scala/lift with Netbeans or Eclipse if it's relevant

flag

2 Answers

vote up 4 vote down check

The simplest you can do is smth like this, if you do not want to bother with exceptions or readability:

val rssFeed = XML.load( (new URL(feedUrl)).openConnection.getInputStream )
link|flag
cool, just noting imports: import scala.xml._ import java.net._ now for my first pattern matching scala function – Mark Essel Jun 30 at 22:42
got some great info from here from Ted Neward: ibm.com/developerworks/java/… – Mark Essel Jul 2 at 12:20
vote up 2 vote down

The best client API I've used for RSS feed parsing is ROME. It's open source, quite easy to use, and as a Java library, it can be invoked from Scala. I don't know of a pure-Scala library that does this.

link|flag
Thanks I came across Rome, but I'm trying to avoid too many additional dependencies at the moment. Rome may be the best long term solution. I'm doing my best to make a lean and mean prototype. – Mark Essel Jun 30 at 20:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.