views:

364

answers:

1

How do I include this in my Android package? When I do:

import javax.xml.parsers.*;
import javax.xml.xpath.*;

It simply doesn't work? Do I have to put files into my JAVA project? Where?

+1  A: 

XPath expressions are not part of Android (yet). There have been several solutions, for example look at this blog. Haven't tested this myself yet.

Maurits Rijk