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.