I want to change the default directory of my JFileChooser to \"My Music\" on Windows. This directory is C:\\Users\\Fre\\Music on my account because my username is <
C:\\Users\\Fre\\Music
Sorry for taking your time, Just found the answer myself:
String userhome = System.getProperty("user.home"); JFileChooser fc = new JFileChooser(userhome +"\\Music");