Skip to content Skip to sidebar Skip to footer

Using Xpath On String In Android (java)

I am looking for some examples of using xpath in Android? Or if anyone can share their experiences. I have been struggeling to make tail or head of this problem :-( I have a stri

Solution 1:

What version of the SDK are you using? XPath was introduced in SDK 8(2.2). If you aren't building against that version then the class doesn't exist.

Solution 2:

Rpond is correct:

  • javax.xml.xpath is introduced since API level 8 (Android 2.2).
  • Android 1.5. is only API Level 3.

References

Post a Comment for "Using Xpath On String In Android (java)"