Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to parse it through SAX Parser and the load the image through url and pass it to the next activity to show. But am failing to do so if any can help me out or give me some reusable code then it would be grateful. here is my xml file. Here is my parsed data class don't to add items to arraylist. PLease help.

public class ParseData extends DefaultHandler 
{
    boolean title , cost , pubDate , link = false;

    private String temp = "";

    ArrayList<String> arrtitle = new ArrayList<String>();

    ArrayList<String> arrcost = new ArrayList<String>();

    ArrayList<String> arrpubDate = new ArrayList<String>();

    ArrayList<String> arrlink = new ArrayList<String>();



    //---------START ELEMENT----------//

    @Override
    public void startElement(String uri , String localName , String qName , Attributes attributes) throws SAXException 
    {
        super.startElement(uri, localName, qName, attributes);

        if(localName.equalsIgnoreCase("title"))
        {
            title = true;

        }else if(localName.equalsIgnoreCase("cost"))
        {
            cost = true;

        }else if(localName.equalsIgnoreCase("pubDate"))
        {
            pubDate = true;

        }else if(localName.equalsIgnoreCase("link"))
        {
            link = true;
        }
    }
    //--------END ELEMENT----------//

    @Override
    public void endElement(String uri , String localName , String qName) throws SAXException 
    {
        super.endElement(uri, localName, qName);
        if(localName.equalsIgnoreCase("title"))
        {
            title = false;

        }else if(localName.equalsIgnoreCase("cost"))
        {
            cost = false;

        }else if(localName.equalsIgnoreCase("pubDate"))
        {
            pubDate = false;

        }else if(localName.equalsIgnoreCase("link"))
            link = false;
    }

    @Override
    public void characters(char[] ch, int start, int length)throws SAXException 
    {
        super.characters(ch, start, length);


        if(title)
        {

        }

        if(cost)
        {

        }

        if(pubDate)
        {

        }

        if(link)
        {

        }
    }
}
share|improve this question
hey can anyone help me please am stuck dont know how to add items to arraylist so kept it blank inside method public void characters(char[] ch, int start, int length)throws SAXException. – ayansinha Feb 4 at 8:09
where is you xml file. post the response pls. You can also see stackoverflow.com/questions/13453516/… – Atrix1987 Feb 4 at 8:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.