Skip to main content

how to parse XML Programmatically in Android

In Android some times we have to parse XML data to use in Application .So here the example for Parsing the XML data .


Step 1:

Create XMLParser.java Class and paste the code like :-


 import android.util.Log;  
 import org.apache.http.HttpEntity;  
 import org.apache.http.HttpResponse;  
 import org.apache.http.client.ClientProtocolException;  
 import org.apache.http.client.methods.HttpPost;  
 import org.apache.http.impl.client.DefaultHttpClient;  
 import org.apache.http.util.EntityUtils;  
 import org.w3c.dom.Document;  
 import org.w3c.dom.Element;  
 import org.w3c.dom.Node;  
 import org.w3c.dom.NodeList;  
 import org.xml.sax.InputSource;  
 import org.xml.sax.SAXException;  
 import java.io.IOException;  
 import java.io.StringReader;  
 import java.io.UnsupportedEncodingException;  
 import javax.xml.parsers.DocumentBuilder;  
 import javax.xml.parsers.DocumentBuilderFactory;  
 import javax.xml.parsers.ParserConfigurationException;  
 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));  
  }  
 }  



Step 2:

Use this Class Where we need Like this


 static final String KEY_ID = "key_Id_from_xml";     // for example KEY_ID ="param"  
 static final String URL = "Your Url here";  
 ArrayList<String>QId=new ArrayList<>();  
 ArrayList<String>map=new ArrayList<>();  
    XMLParser parser = new XMLParser();  
    String xml = parser.getXmlFromUrl(URL); // getting XML  
    Document doc = parser.getDomElement(xml); // getting DOM element  
    NodeList nl = doc.getElementsByTagName(KEY_ID);  
    for (int i = 0; i < nl.getLength(); i++) {  
    Element e = (Element) nl.item(i);  
    String id = e.getAttribute("get attribute name"); // for example q_id  
    String value = e.getTextContent().toString();  
    map.add(value);  
    QId.add(id);  
     }  


Now the data will stored in map and QId both are Arraylist .Use this per as your requirement in Application.


Thats all !! Happy Coding.





Comments

Popular posts from this blog

How to Download Apk file from Url and Install Programmatically

In this post we learn about download apk file from server or website and then install it Programmatically in Phone. Sometimes we have to download external apk file from server and then install if downloading successfully finished.For this we use AsyncTask class  for background process. So here is Code Snippet for this task.Lets Start :- Before this we have to add these Permissions in Manifest.xml file : <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> DownloadNewVersion.java class DownloadNewVersion extends AsyncTask<String,Integer,Boolean> { @Override protected void onPreExecute() { super.onPreExecute(); bar = new ProgressDialog(getActivity()); bar.setCancelable(false); bar.setMessage("Downl...

Solution of Image not Loaded or Auto Suggestions not working in Android Studio

Sometimes we face issue when some images are not loaded or showing in Android Studio . It shows that image not loaded try to open it externally to fix format problem .It cause when some gradle files are corrupted. also if you try auto suggestions not working in xml layout files like  you can try Invalidate Caches and Restart in Android Studio's File Menu option but you will get no result . So here are some steps to follow to remove this type of problem: Step 1: Close your Android Studio Completely. Go to your User Folder - on Windows 7/8 this would be: [SYSDRIVE]:\Users[your username] (ex. C:\Users\DroidMedium\) there you find a folder with name .AndroidStudio3.5  *( i am using Android Studio 3.5.1 version your version may be different according to your Android Studio version) open this folder now you will find two folders Go to System folder  C:\Users\DroidMedium\.AndroidStudio3.5\System\ Step 2: Now under System Folder you will find Caches folder Delete the Folder Com...

How to Implement Item Click Interface in Android?

In Android development, creating interactive lists is essential to most apps. Often, these lists include items that users can click on to trigger actions such as opening a new screen or displaying more information. In this tutorial, we’ll walk through how to implement an item click interface in Android using Java and XML. By the end of this guide, you’ll know how to create a RecyclerView with an item click listener that responds to user taps. This approach is widely used in modern Android development because RecyclerView is both flexible and efficient. Step 1: Set Up Your Android Project First, create a new Android project in Android Studio. Make sure to choose Java as the programming language. Step 2: Add Dependencies Make sure that you have the required dependencies for RecyclerView in your build.gradle file. If not, add them like this: dependencies {     implementation 'androidx.recyclerview:recyclerview:1.2.1' } Sync the project after adding the dependency. Step 3: Define ...