I am fixing a bug on an existing code concerning DocumentBuilder.parse. I have the below code:
String theOutput;
theOutput = response.encodeURL(prefix + "/include/sampleForConversion.jsp?" + request.getQueryString();
StreamSource xmlSource = new StreamSource(new URL(theOutput).openStream(), "http://sampleApps.net/static/dataDef1.1.dtd");
Document xmlDoc = dBuilder.parse(xmlSource.getInputStream());
I dont understand why i am getting a null value for xmlDoc though I have valid values for theOutput and xmlSource variables. Please help.
thanks!
(xmlDoc == null) = trueor do you get an empty document ([#document: null])? The parse method should either return a document or throw an exception but never returnnull... – Andreas_D Jan 7 '10 at 8:39[#document: null]does not mean a null document, that's justDocument's badly-writtentoString()output. – skaffman Jan 7 '10 at 9:57