vote up 1 vote down star

Why is the function java.io.File.toURL() deprecated? I need to pass an URL to Toolkit.createImage() which accepts a URL object. Javadoc recommends me to use File.toURI().toURL(). However:

C:\Documents and settings\Administrator\...

becomes:

C:\Documents%20and%20settings\Administrator\...

which obviously is an invalid file location. I've found File.toURL() to create URL's without the escaping, however it's deprecated. Although it works I'm scared of using deprecated functions. What's a method that's not deprecated that does the same thing?

EDIT: Right now my code looks like:

spriteImage1 = tkit.createImage(new File("./images/sprite1.png").getCanonicalFile().toURL());

EDIT: I need to create an Image from a folder outside my .jar file. I'll need a relative location ("./images/sprite1.png"). The method createImage(String) throws an exception when I try to give it the relative path.

flag

It's not at all obvious to me why you think the escaped version is wrong. Admittedly I'd probably expect + instead of %20, but I'd hope that it would still work. – Jon Skeet Apr 22 at 14:18
4  
Shouldn't the second be file:///C:/Documents%20and%20settings/Administrator/... ? – R. Bemrose Apr 22 at 14:18
Actually the second version gives me an exception when passed to createImage() while the first works fine. And yes it's file:///... – unknown Apr 22 at 14:20
Out of interest, what is the exception? – McDowell Apr 22 at 14:23
It's a NullPointerException when I try to draw an image loaded by createImage() that doesn't exist. – unknown Apr 22 at 14:25
show 2 more comments

5 Answers

vote up 0 vote down check

Better. Since none of the answers here worked, I found out how to disable the Eclipse warning for deprecation. Thanks all!

link|flag
Disabling the warning on a deprecated method does not eliminate the fact that the method is deprecated. – Martin OConnor Apr 23 at 21:54
vote up 1 vote down

You could consider using ImageIO as an alternative.

link|flag
vote up 5 vote down

Why don't you just use the createImage function that takes a String filename instead?

link|flag
vote up 10 vote down

Wouldn't it be easier to use Toolkit.createImage(File.getPath()); instead?

link|flag
vote up 10 vote down

It is known to not handle special characters correctly.

You might want to read this page.

link|flag

Your Answer

Get an OpenID
or

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