Tagged Questions
1
vote
1answer
15 views
DirectoryChooser - multiple directories
JavaFX - Is it possible to choose multiple directories at once with DirectoryChooser?
Or is there any way how to do this without DirectoryChooser?
0
votes
2answers
26 views
Java: how to locate the value that points to our directory files
In the code given below, taken from the JAVA API page for class JFileChooser:
JFileChooser chooser = new JFileChooser();
FileNameExtensionFilter filter = new FileNameExtensionFilter(
"JPG & ...
6
votes
1answer
3k views
JavaFX FileChooser
I came across a little problem now with JavaFX. I tried to make a filechoosing in my code where I can point on a FOLDER instead of a file. Currently I don't have a solution for it. Do you know a ...