What's the difference between getPath(), getAbsolutePath(), and getCanonicalPath() in Java?
And when do I use each one?
|
What's the difference between And when do I use each one? |
|||||
|
|
Consider these filenames:
A canonical path is always an absolute path. Converting from a path to a canonical path makes it absolute (usually tack on the current working directory so e.g. |
|||||||||||
|
|
The best way I have found to get a feel for things like this is to try them out:
Your output will be something like:
So, When to use each? Depends on what you're trying to accomplish, but if you were trying to see if two |
|||
|
|
|
In short:
Also, each of this has a File equivalent which returns the corresponding |
||||
|
|
|
Have you checked out the Java API docs. They document each class and the methods they provide. |
|||||||||||||
|
|
The big thing to get your head around is that the
Note I say attempts - in forming a Canonical Path, the VM can throw an |
||||
|
|
|
As to when to use them. It depends on what you are trying to achieve. |
||||
|
|