JFileChooser change default directory in Windows

前端 未结 7 1136
粉色の甜心
粉色の甜心 2021-02-12 16:27

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 <

7条回答
  •  不要未来只要你来
    2021-02-12 16:35

    why don't you just give the FileChooser the path when you create it, like:

    JFileChooser chooser = new JFileChooser("C:\\Users\\Fre\\Music\\");
    

提交回复
热议问题