I'm using SomeClass.class.getResource("somefile").getPath() to read in
some file from a local harddrive. It works fine if there is no
whitespace in the path name, but fails miserably if there is. All the
whitespace is replaced by %20. Now, I know how to fix this, but then my
app will fail if someone has the characters %20 in their path. Should I
perhaps use something else? (This is on windows btw. I haven't tested it
on linux yet, since I haven't downloaded a VM yet (just installed
Mandrake Linux this weekend.))

Signature
Daniel Sjöblom
Remove _NOSPAM to reply by mail
Andrew Thompson - 30 Mar 2004 17:13 GMT
> I'm using SomeClass.class.getResource("somefile").getPath() to read in
> some file from a local harddrive.
Stick with the URL..
You can either
Class.getResourceAsStream(String)
or.. URL.openStream()
That way, you can access
1) files on file system
2) files on the net
3) files inside zip/jar archives
If you find you have trouble with
some URL's still, look into URI's,
they can even handle file names
containing the '#' character, which
URL will interpret as an URL 'fragment' -
a link inside a document.
HTH

Signature
Andrew Thompson
http://www.PhySci.org/ Open-source software suite
http://www.PhySci.org/codes/ Web & IT Help
http://www.1point1C.org/ Science & Technology
Daniel Sjöblom - 31 Mar 2004 19:10 GMT
>>I'm using SomeClass.class.getResource("somefile").getPath() to read in
>>some file from a local harddrive.
[quoted text clipped - 9 lines]
> 2) files on the net
> 3) files inside zip/jar archives
This works. Thanks.

Signature
Daniel Sjöblom
Remove _NOSPAM to reply by mail