Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9216591
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T02:27:03+00:00 2026-06-18T02:27:03+00:00

I am making a quiz application. For the MCQ questions I have an XML,

  • 0

I am making a quiz application. For the MCQ questions I have an XML, which I have parsed.
This is the XML:

<quiz>
<mchoice>
<question>Not a team sport for sure</question>
<id>1</id>
<option1>Cricket</option1>
<option2>Tennis</option2>
<option3>Rugby</option3>
<option4>Soccer</option4>
<answer>Tennis</answer>
</mchoice>
<mchoice>
<question>I am the biggest planet in the Solar System</question>
<id>2</id>
<option1>Saturn</option1>
<option2>Jupiter</option2>
<option3>Neptune</option3>
<option4>Pluto</option4>
<answer>Jupiter</answer>
</mchoice>
<mchoice>
<question>I am the closest star to the earth</question>
<id>3</id>
<option1>Milky way</option1>
<option2>Moon</option2>
<option3>Sun</option3>
<option4>North Star</option4>
<answer>Sun</answer>
</mchoice>
<mchoice>
<question>A number which is not prime</question>
<id>4</id>
<option1>31</option1>
<option2>61</option2>
<option3>71</option3>
<option4>91</option4>
<answer>91</answer>
</mchoice>
<mchoice>
<question>Which is correct?</question>
<id>5</id>
<option1>Foreine</option1>
<option2>Fariegn</option2>
<option3>Foreig</option3>
<option4>Foreign</option4>
<answer>Foreign</answer>
</mchoice>
</quiz>

This is the XML Parser class which I have used:

public class XMLParser {

    // constructor
    public XMLParser() {

    }

    /**
     * Getting XML from URL making HTTP request
     * @param url string
     * */
    public String getXmlFromUrl(String url) {
        String xml = null;

        try {
            // defaultHttpClient
            DefaultHttpClient httpClient = new DefaultHttpClient();
            HttpPost httpPost = new HttpPost(url);

            HttpResponse httpResponse = httpClient.execute(httpPost);
            HttpEntity httpEntity = httpResponse.getEntity();
            xml = EntityUtils.toString(httpEntity);

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        // return XML
        return xml;
    }

    /**
     * Getting XML DOM element
     * @param XML string
     * */
    public Document getDomElement(String xml){
        Document doc = null;
        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        try {

            DocumentBuilder db = dbf.newDocumentBuilder();

            InputSource is = new InputSource();
                is.setCharacterStream(new StringReader(xml));
                doc = db.parse(is); 

            } catch (ParserConfigurationException e) {
                Log.e("Error: ", e.getMessage());
                return null;
            } catch (SAXException e) {
                Log.e("Error: ", e.getMessage());
                return null;
            } catch (IOException e) {
                Log.e("Error: ", e.getMessage());
                return null;
            }

            return doc;
    }

    /** Getting node value
      * @param elem element
      */
     public final String getElementValue( Node elem ) {
         Node child;
         if( elem != null){
             if (elem.hasChildNodes()){
                 for( child = elem.getFirstChild(); child != null; child = child.getNextSibling() ){
                     if( child.getNodeType() == Node.TEXT_NODE  ){
                         return child.getNodeValue();
                     }
                 }
             }
         }
         return "";
     }

     /**
      * Getting node value
      * @param Element node
      * @param key string
      * */
     public String getValue(Element item, String str) {     
            NodeList n = item.getElementsByTagName(str);        
            return this.getElementValue(n.item(0));
        }
}

This is the activity from which I am calling the XML parser Class and adding the parsed data into an Arraylist having hashMap inside it:

// All static variables
    static final String URL = "http://gujaratimandal.org/data.xml";
    // XML node keys
    static final String KEY_MCHOICE = "mchoice"; // parent node
    static final String KEY_QUESTION = "question";
    static final String KEY_ID = "id";
    static final String KEY_OPTION1 = "option1";
    static final String KEY_OPTION2 = "option2";
    static final String KEY_OPTION3 = "option3";
    static final String KEY_OPTION4 = "option4";
    static final String KEY_ANSWER = "answer";
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);



        ArrayList<HashMap<String, String>> menuItems = new ArrayList<HashMap<String, String>>();

        XMLParser parser = new XMLParser();
        String xml = parser.getXmlFromUrl(URL); // getting XML
        Document doc = parser.getDomElement(xml); // getting DOM element

        NodeList nl = doc.getElementsByTagName(KEY_MCHOICE);
        // looping through all item nodes <item>
        for (int i = 0; i < nl.getLength(); i++) {
            // creating new HashMap
            HashMap<String, String> map = new HashMap<String, String>();
            Element e = (Element) nl.item(i);
            // adding each child node to HashMap key => value
            map.put(KEY_MCHOICE, parser.getValue(e, KEY_MCHOICE));
            map.put(KEY_ID, parser.getValue(e, KEY_ID));
            map.put(KEY_QUESTION, parser.getValue(e, KEY_QUESTION));
            //map.put(KEY_QUESTION, parser.getValue(e, KEY_QUESTION));

            map.put(KEY_OPTION1, parser.getValue(e, KEY_OPTION1));
            map.put(KEY_OPTION2, parser.getValue(e, KEY_OPTION2));
            map.put(KEY_OPTION3, parser.getValue(e, KEY_OPTION3));
            map.put(KEY_OPTION4, parser.getValue(e, KEY_OPTION4));
            map.put(KEY_ANSWER,  parser.getValue(e, KEY_ANSWER));
            // adding HashList to ArrayList
            menuItems.add(map);


            for (HashMap.Entry<String, String> entry : map.entrySet()) {
                String display_id=entry.getKey();
                String display_question = entry.getValue();
               makeAToast( ""+display_id+":"+ display_question);

            }


        }

         makeAToast(""+menuItems.size());
}

     public void makeAToast(String str) {

            Toast toast = Toast.makeText(this,str, Toast.LENGTH_LONG);
            toast.setGravity(Gravity.BOTTOM, 0, 0);
            toast.setDuration(1000000);
            toast.show();
        }

The problem is that, the data is getting retrieved but not in the desired way.

I want to retrieve the data in the following format:

Format Required

Such that I can populate these TextViews with the data from every question:

Require to populate

What should I do?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T02:27:04+00:00Added an answer on June 18, 2026 at 2:27 am

    make one string in you public class activity

    String keyoption,keyoption2,name;

    and

    for (int i = 0; i < nl.getLength(); i++) {
    
        HashMap<String, String> map = new HashMap<String, String>();
        Element e = (Element) nl.item(i);
    
        keyoption = parser.getValue(e, KEY_OPTION1);
        keyoption2 = parser.getValue(e, KEY_OPTION2);
    
        map.put(KEY_OPTION1, keyoption);
        map.put(KEY_OPTION2, keyoption2);
    }
    
    name.setText(keyoption);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm making a flash quiz which will have a series of questions. Each question
I'm making a simple quiz application which has multiple questions. It has no back
I am making a quiz app. For displaying the MCQ questions, I have used
I am making a quiz application for mobile.The questions are comming from xml. How
I am making a quiz application in J2ME. Questions and answers will come from
I'm making a quiz in Actionscript 2.0. The quiz has 8 questions. Each question
I am making a quiz application with question and answer. I want to make
I am making a quiz application where I would need to have a timer.
I'm making a quiz with a text input. This is what I have so
I am making a geo quiz with a map. I have this function to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.