If I write to a property file and use a "\" or a ":" java produces a backslash before the character in the property file. I've tried putting a backslash before the character to cancel it out, that doesn't work.
Ex:
props.setProperty("outputFolder", "D:\\src");
This produces D\:\\src in the property file.
Any help would be appreciated, thank you.