Dear All,

I am taking an RSS file as an inputstream and trying to parse it using
Sax Parser. I want the title & the description to be stored in an
array list.

The code is working perfectly as a Java Application but when
implemented in App Engine it doesn't give me the result.
The Code for the same is as below :

 parser.parse(inStream);
            out.println(handler.getList().size()); //Handler is an
object of NewsHandler which extends DefaultHandler
            for(int i = 1 ; i<=handler.list.size(); i++)
            {
                out.println(i);
                out.println(handler.list.get(i).getDescription());
                }

Please help.

Thanks!!

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to