i have slight problem:
i downloaded the xerces xml-parser and want to use the DOMParser class:
import org.apache.xerc es.parsers.DOMP arser;
later in code:
DOMParser parser = new DOMParser();
this class resides in a jar-file which i put in my classpath
(/dir/xalan-j_2_6_0/xercesImpl.jar)
jar -tvf reveals the DOMParser class is there, but the compiler says it
can't resolve the symbol.
Is this because you can't access this class directly anymore?
Should i use JAXP, to access it?
anybody an idea?
tx
i downloaded the xerces xml-parser and want to use the DOMParser class:
import org.apache.xerc es.parsers.DOMP arser;
later in code:
DOMParser parser = new DOMParser();
this class resides in a jar-file which i put in my classpath
(/dir/xalan-j_2_6_0/xercesImpl.jar)
jar -tvf reveals the DOMParser class is there, but the compiler says it
can't resolve the symbol.
Is this because you can't access this class directly anymore?
Should i use JAXP, to access it?
anybody an idea?
tx
Comment