Get path / classpath separator in Java

Description

The following code shows how to get path / classpath separator.

Example


//w  w  w .  j a v a  2  s . c  om
import java.util.Properties;

public class Main {
  public static void main(String[] args) {
    Properties properties = System.getProperties();

    String pathSeparator = properties.getProperty("path.separator");
    System.out.println("pathSeparator = " + pathSeparator);
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    I/O »




Binary File
Byte Array
CharSet
Checksum
Console
Create Copy Move Delete
Directory
Drive
Encode Decode
File Attribute
File Lock
File System
GZIP
Jar File
NIO Buffer
Path
Scanner
StreamTokenizer
Temporary File
Text File
Zip