Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
failed to open file file://D/:/dev/test_all.html  JavaException: java.net.UnknownHostException: D

Any ideas for why this happens?

share|improve this question

3 Answers

up vote 3 down vote accepted

the third / is in the wrong place, the file url is contructed with file:///<path>

share|improve this answer
Adding an extra slash in front of the path fixed the problem. Apparently, file:///D/:/dev/test_all.html is considered legal. – Vidar Kongsli Apr 21 '10 at 12:23

Your URL is malformed. Instead of file://D/:/ you want file://D:/ -- no slash between the drive letter and the colon.

share|improve this answer

Here is my solution that's actually working with XMLParserv2, I hope this helps:

protected URL createURL(String filename){

        URL url = null;

        try {
            url = new URL("file://" + System.getProperty("user.dir") +  File.separator + filename);
        } catch (MalformedURLException e) {
            System.out.println(e.getMessage());
            e.printStackTrace();
        }
        return url;
    }
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.