File has the static Strings separator and pathSeparator. The separator is a "default name-separator character" and the pathSeparator is a "path-separator character".
What is the difference? Is there a time when one is preferable to the other?
File has the static Strings separator and pathSeparator. The separator is a "default name-separator character" and the pathSeparator is a "path-separator character".
What is the difference? Is there a time when one is preferable to the other?
Copyright © 2021 Jogjafile Inc.
java.io.File class contains four static separator variables. For better understanding, Let's understand with the help of some code
Note 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.