Package com.salas.bb.utils.parser.impl

Examples of com.salas.bb.utils.parser.impl.BBSyndFeedInput


    protected FeedParserResult parse(InputStream aStream, FeedParserResult aResult, URL aFeedURL)
        throws IOException, FeedParserException
    {
        try
        {
            SyndFeedInput input = new BBSyndFeedInput();
            SyndFeed feed = input.build(XmlReaderFactory.create(aStream));

            Channel channel = RomeFeedParser.convertFeed(feed, aFeedURL);
            aResult.setChannel(channel);

            // Add items
View Full Code Here

TOP

Related Classes of com.salas.bb.utils.parser.impl.BBSyndFeedInput

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.