In the File
class there are two strings, separator
and pathSeparator
.
What's the difference? When should I use one over the other?
In the File
class there are two strings, separator
and pathSeparator
.
What's the difference? When should I use one over the other?
If you mean
File.separator
andFile.pathSeparator
then:File.pathSeparator
is used to separate individual file paths in a list of file paths. Consider on windows, the PATH environment variable. You use a;
to separate the file paths so on WindowsFile.pathSeparator
would be;
.File.separator
is either/
or\
that is used to split up the path to a specific file. For example on Windows it is\
orC:\Documents\Test
You use separator when you are building a file path. So in unix the separator is
/
. So if you wanted to build the unix path/var/temp
you would do it like this:You use the
pathSeparator
when you are dealing with a list of files like in a classpath. For example, if your app took a list of jars as argument the standard way to format that list on unix is:/path/to/jar1.jar:/path/to/jar2.jar:/path/to/jar3.jar
So given a list of files you would do something like this:
java.io.File
class contains four static separator variables. For better understanding, Let's understand with the help of some codeNote that all of these are final variables and system dependent.
Here is the java program to print these separator variables. FileSeparator.java
Output of above program on Unix system:
Output of the program on Windows system:
To make our program platform independent, we should always use these separators to create file path or read any system variables like PATH, CLASSPATH.
Here is the code snippet showing how to use separators correctly.