Tagged Questions
2
votes
1answer
50 views
Using FileDialog on MacOS X instead of JFileChooser for file AND directory
Here's my problem. I have a Java application that runs on MacOS X. Right now I'm trying to make this application available on the Mac App Store. Unfortunately, Apple always reject my application ...
-2
votes
1answer
174 views
JFileChooser on Mac cannot see files named by Chinese chars?
The program worked fine when running in Intellij (it can see the Chinese named files).
I built it into a .jar file. Executed the jar and the JFileChooser cannot see those files.
And I tried the jar ...
3
votes
3answers
139 views
JFilechooser appearance
In my swing application, I have set the UI Look and Feel as:
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
And it works well on Windows. Inside, the application, the user has ...
3
votes
1answer
86 views
Java JFileChooser unable to detect foreign languages
In my application, the user chooses a file for which JFileChooser is used. It so happens that if the folder name is in some other language, then it doesn't detect that folder.
For example: On the ...
1
vote
1answer
1k views
Can I use java.awt.FileDialog to only allow the user to select folders
I'm trying to use FileDialog instead of JFileChooser to get more natural behaviour on OSX, especially important is the Favourites column with clear links to shared folders that are hidden under ...
2
votes
2answers
189 views
JFileChooser doesn't return full file name on OSX 10.7
The problem is that the File object returned by JFileChooser has incomplete file name. To be more exact it returns the file name without the file extension part. I have tried retrieving the path using ...
1
vote
1answer
181 views
JFileChooser: Not able to select root dir
I'm using a JFileChooser to let the user select a directory to perform a specific task on it (in fact, want to calculate the dir's recursive size). Unfortunately it seems that it is not possible to ...
4
votes
2answers
797 views
Better JFileChooser alternatives for OS X, Linux?
JFileChooser, at least under OS X, produces a very half-baked open dialog that doesn't support things like typing in the start of a file name to select it or disclosure triangles.
Does anyone know of ...
2
votes
2answers
674 views
Changing selected files in a JFileChooser in response to an event
I would like my JFileChooser to allow multiple file selection, but with a limit on the number of files that can be selected simultaneously.
Ideally I would like to constrain the selection in ...
2
votes
1answer
118 views
swing file selection on a Mac OSX
I am using JFileChooser. On a Macintosh I get this crappy crippled dialog box. I'm used to seeing the Spotlight search box that helps me find which directory something is in; how can I enable this ...
2
votes
1answer
637 views
JFileChooser returns incorrect path in OS X (folders only mode)
I have a problem in java swing where the user has to select a folder, so I am using the code below.
JFileChooser fc = new JFileChooser();
fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
...
5
votes
4answers
3k views
JFileChooser for directories on the Mac: how to make it not suck?
The JFileChooser in "directories only" mode on the Mac has two serious, crippling problems:
1) You cannot create directories with it
2) You cannot switch drives
This is rather a huge problem for my ...
5
votes
3answers
2k views
JFileChooser on OS X
JFileChooser looks nothing like the native widget. I seem to remember reading some hack to get it look like the native widget but searching for it know i can't seem to find it again i came across ...
4
votes
2answers
2k views
How can I make a JFileChooser on the Mac that lets users create directories?
I have an installer program that lets the user choose a directory in which to install. The JFileChooser implementation on MacOS uses a native dialog (or at least it looks native). That's great.
The ...
