Hi all,
I am a new in java
and i need to check OS of the system
every where i have "\\" i need to modify to "/"
So i write something like this in my class Constants
Code :public static boolean isWindows;
and in the class Login that is the main class
Code :private void checkOS() { if (System.getProperty("os.name").startsWith("Windows")) { Constants.isWindows = true; } else { Constants.isWindows = false; } }
So the question is how to use this code or how to modify in the "\\" to "/" what i need to write there?
Please help me to understand
Thank you

