Package com.sun.syndication.feed

Examples of com.sun.syndication.feed.AbstractFeed


     * @throws IllegalArgumentException thrown if feed type could not be understood by any of the underlying parsers.
     * @throws FeedException if the feed could not be parsed
     *
     */
    public AbstractFeed build(File file) throws FileNotFoundException,IOException,IllegalArgumentException,FeedException {
        AbstractFeed feed;
        Reader reader = new FileReader(file);
        feed = build(reader);
        reader.close();
        return feed;
    }
View Full Code Here

TOP

Related Classes of com.sun.syndication.feed.AbstractFeed

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.