get Node Value With Attribute : Xml « Development « Android






get Node Value With Attribute

     
class Main {

  public static String getNodeValueWithAttribute(String XML, String nodeName,
      String attribute) {
    String tokenValue = null;
    int start = XML.indexOf("<" + nodeName + " " + attribute + ">")
        + ("<" + nodeName + " " + attribute + ">").length();
    int stop = XML.indexOf("</" + nodeName + ">");
    try {
      tokenValue = XML.substring(start, stop);
    } catch (Exception ex) {

    }
    return tokenValue;
  }

}

   
    
    
    
    
  








Related examples in the same category

1.Using xml resource
2.XML Resource Demo
3.Load style from styles.xml
4.Define PreferenceScreen in xml file
5.Using XML Parser
6.XML-defined adapters can be used to easily create adapters in your own application or to pass adapters to other processes.
7.Xml Parse
8.Xml Serializer Uri
9.Get Text Content from Xml Node
10.Escape un escape Xml
11.Get Xml node value with substring
12.Get value from Element
13.Get attribute value
14.Get field from NamedNodeMap
15.get Character Data From Element
16.update Xml