I am developing a Java application with SWT and using org.eclipse.swt.widgets.FileDialog class for file input like this:

FileDialog dialog = new FileDialog(shell, SWT.OPEN);
String[] filterNames = getFilterNames(importers, isWindowsLike);
String[] filterExtensions = getFilterExtensions(importers, isWindowsLike);

dialog.setFilterNames(filterNames);
dialog.setFilterExtensions(filterExtensions);
dialog.setFilterPath(lastPath);

String selectedFileAbsolutePath = dialog.open();

This works fine except the dialog displays hidden files (those with a dot-prefix), which I would like to avoid. I did not find a solution yet. Is there a way to do this with SWT?

Thanks in advance

EDIT: The two methods i omitted are probably also of interest. I printed out the return values of the methods with Arrays.toString(String[]). Here is getFilterNames:

[Excel Files, CSV Files, All Files (*)]

getFilterExtensions in turn returns this:

[xls;xlsx, csv, *]

On windows every "*" is replaced by "*.*" as suggested by the SWT snippets on the eclipse website (http://git.eclipse.org/c/platform/eclipse.platform.swt.git/tree/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet72.java) (I already tried using the windows version, it still displayed hidden files)

[Excel Files, CSV Files, All Files (*.*)]
[xls;xlsx, csv, *.*]
link|improve this question
On which OS are you trying to do this? – Carlo Feb 22 at 17:06
You could try changing the "(asterisk).(asterisk)" extension filter to "(asterisk)?.(asterisk)" and see if that works. – Gilbert Le Blanc Feb 22 at 17:26
I am developing under OS X, but the application is supposed to also run under windows and linux. I achieve this by loading the appropriate SWT-Jar-File at runtime. I have now tried it under windows and it works fine. It therefore seems to be an OSX issue only (and possibly Linux, I will try that too). Sorry for not testing this earlier. I also tried inserting the question mark as suggested, but it did not work. (But thanks for the suggestion) – Philipp Stadler Feb 22 at 18:59
I tried to open a Java file dialog, in JMeter, under OSX, and I do not see the hidden files. Maybe you could give a look at its source code. – Carlo Feb 22 at 20:48
I'm sorry, I can't follow. As far as I can tell after some googling JMeter is some kind of testing framework? What piece of my source code would you like to have a look at? Did you open an AWT/Swing-File dialog or did you use SWT, as I did? Maybe using AWT is not a bad idea after all. If what I am trying to achieve is not possible with SWT, i will definitely do that. – Philipp Stadler Feb 23 at 14:45
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.