i implement xml parsing from http Request ,,i have a problem with
parsing this structure xml as follow:

<Services>
            <item>

        <sample>1</sample>
       <sample>2</sample>
                 .
                 .
                 .
                 .
                 .
                 .

            </item>

        <item>

       <sample>1</sample>
       <sample>2</sample>
                   .
                   .
                   .
       <sample>5</sample>
                   .
                   .
                    .
            </item>

how i can do this structure ,,,,,,Note that i using dom parser as
follow:

                 XMLParser parser = new XMLParser();
                InputStream is= parser.getStream(URL);
                Document doc = parser.getDomElement(is);


-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to