Re: Symbol ``['' and a java.net.URI.create method

2008-04-29 Thread Alan Bateman
Yep, it sounds like it might be doing "URI.create(file)" rather than "new File(file).toURI()". -Alan. Christopher Hegarty - Sun Microsystems Ireland wrote: The square bracket characters ('[' and ']') are reserved characters in a URI. If they are to be used then they need to percent encoded.

Re: Symbol ``['' and a java.net.URI.create method

2008-04-29 Thread Christopher Hegarty - Sun Microsystems Ireland
The square bracket characters ('[' and ']') are reserved characters in a URI. If they are to be used then they need to percent encoded. That is, '[' is percent encoded to be %5B. The single argument java.net.URI constructor requires any illegal characters in its argument to be quoted and prese

Re: Symbol ``['' and a java.net.URI.create method

2008-04-29 Thread Christopher Hegarty - Sun Microsystems Ireland
Since this is a question about java.net.URI I am moving this question to the OpenJDK Net Dev alias. I will try to answer it there. -Chris. Michal Vyskocil wrote: Hi all, I'm working on adopting of jpackage project to openSUSE and got a problem with build of maven. The jpackage's folks have