Is it possible to select multiple files using java.awt.FileDialog?
Because I want my dialog to have the OSX finder interface, I can’t use JFileChooser.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
According to Javadoc it seems to be possible in JDK7 (see
setMultipleMode(boolean)orgetFiles()which returns an array of files). However cross checking with the Javadoc for JDK6 it is not possible in older versions…