Hello all...
I am trying to figure out what the proper format is to specify an absolute
path on a Windows platform as the URI for the parse method. If I have an
XMLReader called parser, the following:
parser.parse("c:\test\data.xml");
will not work. I am finding this same issue a bit of an problem when trying
to resolve the dtd in the EntityResolver as well, since the resolveEntity
method is receiving a systemId that includes path info, as in
file:///test/dtd/data.dtd. Specifically, on a Windows platform, how do you
include the drive letter in the URI?
Thanks in advance.
Brad