Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using JDOM with SAXBuilder to parse XML files, today I have a problem with a file wich is throwing this error :

java.net.MalformedURLException: unknown protocol: c
    at java.net.URL.<init>(URL.java:574)
    at java.net.URL.<init>(URL.java:464)
    at java.net.URL.<init>(URL.java:413)
    at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source)
    at org.apache.xerces.impl.XMLVersionDetector.determineDocVersion(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
    at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
    at org.jdom.input.SAXBuilder.build(SAXBuilder.java:518)
    at org.jdom.input.SAXBuilder.build(SAXBuilder.java:986)
    at com.foo.moo.MyClass.getValues(MyClass.java:321)

And the line is :

Document document = null; 
document = sxb.build(files.elementAt(i)); // This one

After doing some researches on internet, I think the error is related to Java 1.6.

What do you think ?

share|improve this question
1  
can you post the XML that is causing the problem? – beny23 Aug 30 '11 at 13:08

2 Answers

up vote 6 down vote accepted

My first guess is that you are loading a local file, like: "c:/mylocalfile.xml"

But this URL does not contain the protocol, like http://, ftp:// or file://

Try file://c:/mylocalfile.xml

share|improve this answer
Agree. You can try something like if(myUrl.getProtocol().equals("c")){myUrl = new URL("file://"+myUrl.toexternalform())} – MrDrews Aug 30 '11 at 13:44

Actually, I had space in my folder name which caused this error. Even in case of local files JAVA has the capability of understanding the protocol types.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.