Why are there three different ways to get the file-separator in Java?
How do we decide which to use?
|
Why are there three different ways to get the file-separator in Java? How do we decide which to use? |
||||
|
|
|
|
|||||||||||
|
|
If your code doesn't cross filesystem boundaries, i.e. you're just working with one filesystem, then use This will, as explained, get you the default separator for your FS. As Bringer128 explained, The last one, So, every one of these options is almost the same as others, but not quite. Choose one that suits your needs. |
|||||||||
|