Development Android

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("");
    try {
      tokenValue = XML.substring(start, stop);
    } catch (Exception ex) {
    }
    return tokenValue;
  }
}