Is there a way to convert this:
/C:/Users/David/Dropbox/My%20Programs/Java/Test/bin/myJar.jar
into this?:
C:\Users\David\Dropbox\My Programs\Java\Test\bin\myJar.jar
I am using the following code, which will return the full path of the .JAR archive, or the /bin directory.
fullPath = new String(MainInterface.class.getProtectionDomain()
.getCodeSource().getLocation().getPath());
The problem is, getLocation()
returns a URL
and I need a normal windows filename.
I have tried adding the following after getLocation()
:
toString()
and toExternalForm()
both return:
file:/C:/Users/David/Dropbox/My%20Programs/Java/Test/bin/
getPath()
returns:
/C:/Users/David/Dropbox/My%20Programs/Java/Test/bin/
Note the %20
which should be converted to space.
Is there a quick and easy way of doing this?
The current answers seem fishy to me.
turns a file URL such as this
into this
so you can use this constructor
to give you the Windows path
Hello confused people from the future. There is a nuance to the file path configuration here. The path you are setting for TESSDATA_PREFIX is used internally by the C++ tesseract program, not by the java wrapper. This means that if you're using windows you will need to replace the leading slash and replace all other forward slashes with backslashes. A very hacky workaround looks like this:
As was mentioned - getLocation() returns an URL. File can easily convert an URI to a path so for me the simpliest way is just use:
Of course if you really need String, just modify to:
You don't need URLDecoder at all.
The following code is what you need:
The current recommendation (with JDK 1.7+) is to convert URL → URI → Path. So to convert a URL to File, you would say
Paths.get(url.toURI()).toFile()
. If you can’t use JDK 1.7 yet, I would recommendnew File(URI.getSchemeSpecificPart())
.Converting file → URI: First I’ll show you some examples of what URIs you are likely to get in Java.
Some observations about these URIs:
Converting URI → file: Let’s try converting the preceding examples to files:
Again, using
Paths.get(URI)
is preferred overnew File(URI)
, because Path is able to handle the UNC URI and reject invalid paths with the \?\ prefix. But if you can’t use Java 1.7, saynew File(URI.getSchemeSpecificPart())
instead.By the way, do not use
URLDecoder
to decode a file URL. For files containing “+” such as “file:///C:/main.c++”,URLDecoder
will turn it into “C:\main.c ”!URLDecoder
is only for parsing application/x-www-form-urlencoded HTML form submissions within a URI’s query (param=value¶m=value
), not for unquoting a URI’s path.2014-09: edited to add examples.