Java examples for Native OS:Environment
Get file separator using System class
public class Main { public static void main(String[] args) { String strFileSeparator = System.getProperty("file.separator"); //from www .j av a 2 s . c om System.out.println("File separator is : " + strFileSeparator); } }