up vote 10 down vote favorite
share [g+] share [fb]

I'm receiving an URL that locates a local file (the fact that I receive an URL is not in my control). The URL is escaped validly as defined in RFC2396. How can I transform this to a Java File object?

Funnily enough, the URL getFile() method returns a String, not a File.

I've created a directory called "/tmp/some dir" (with a spacing character between "some" and "dir"), which is correctly located by the following URL: "file:///tmp/some%20dir" (quotes added for clarity).

How can I convert that URL to a Java File?

To give more detail about my issue, the following prints false:

URL url = new URL( "file:///tmp/some%20dir" );
File f = new File( url.getFile() );
System.out.println( "Does dir exist? " + f.exists() );

While the following (manually replacing "%20" with a space) prints true:

URL url = new URL( "file:///tmp/some%20dir" );
File f = new File( url.getFile().replaceAll( "%20", " " ) );
System.out.println( "Does dir exist? " + f.exists() );

Note that I'm not asking why the first example prints false nor why the second example using my hacky replaceAll prints true, I'm asking how to convert an escaped URL into a Java File object.

EDIT: thanks all, this was nearly a dupe but not exactly.

Stupidly I was looking for a helper method inside the URL class itself.

The following works as expected to get a Java File from a Java URL:

URL url = new URL( "file:///home/nonet/some%20dir" );
File f = new File( URLDecoder.decode( url.getFile(), "UTF-8" ) );
link|improve this question

60% accept rate
feedback

2 Answers

up vote 3 down vote accepted
URLDecoder.decode(url);

See related question http://stackoverflow.com/questions/623861/how-do-you-unescape-urls-in-java

link|improve this answer
feedback

The File constructor taking an URI in combination with URL#toURI() should work:

URL url = getItSomehow();
File file = new File(url.toURI());
link|improve this answer
+1, this is excellent. – SyntaxT3rr0r Jan 29 '10 at 23:51
You're welcome. Why is this then not accepted by the way? :o – BalusC Jan 29 '10 at 23:54
Well ... you only answered the part about getting the file from the URL. But hey, its the OP's choice as to which answer he thinks is most helpful. – Stephen C Jan 30 '10 at 2:40
Loved it too, seems to be the best answer. If only toURI wouldn't throw that nasty URISyntaxException... – Stijn de Witt Mar 11 '11 at 12:25
@Stijn: URLDecoder#decode() is also not free of checked exceptions. Either way, just add throws IOException to the method. – BalusC Mar 11 '11 at 12:31
feedback

Your Answer

 
or
required, but never shown

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