It seems file selection dialogs do not work properly with SWT on Mac OSX 64-bit, with Oracle Java 7:
FileDialog dlg = new FileDialog(shell, SWT.OPEN); dlg.open();
One of the main problems is that the file preview (the rightmost panel that appears when you select the file) does not work: the counter does not stop, the CPU usage increases. In random order, another problem is that the contents of the folder look empty.
Everything works fine with the official Apple Java 6 package. I tried several versions of SWT (4.2.1, 4.2.2, 4.3, beta 4.4).
Does anyone know of a workaround? Could this be fixed at the SWT level, or is it a Java 7 issue?
source share