Closed GrenderG closed 9 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.
read()
String
byte[]
ByteArrayInputStream
Currently the read(String) method takes a URL string as input. It would be good to avoid doing a breaking change for this.
read(String)
Do you have any suggestion how the method signature should look like?
Would be nice to have a
read()
method capable of parsing aString
containing a feed directly. At this moment you need to convert theString
tobyte[]
and then toByteArrayInputStream
.