w3stling / rssreader

A simple Java library for reading RSS and Atom feeds
MIT License
152 stars 25 forks source link

[FEATURE REQUEST] Parse String directly. #134

Closed GrenderG closed 9 months ago

GrenderG commented 10 months ago

Would be nice to have a read() method capable of parsing a String containing a feed directly. At this moment you need to convert the String to byte[] and then to ByteArrayInputStream.

w3stling commented 10 months ago

Currently the read(String) method takes a URL string as input. It would be good to avoid doing a breaking change for this.

Do you have any suggestion how the method signature should look like?