How to open files in Java Swing without JFileChooser

前端 未结 2 859
别那么骄傲
别那么骄傲 2021-01-14 07:12

I\'m using Java Swing (GUI) and I want to add a button to my project for opening files.

I don\'t like the JFileChooser since it opens a small window for

2条回答
  •  自闭症患者
    2021-01-14 08:03

    If you do not need the flexibility of the JFileChooser, you can opt for the FileDialog which uses the native OS file dialog. See also Code ranch topic and this answer on SO

提交回复
热议问题