hi,
I've a little swing app and part of this uses a basic filechooser. However I've noticed that when you try to order the files by size/name/modified date etc sometimes it works and sometimes not. Is this a common issue as I've started noticing it in other applications such as SqlDeveloper (oracle) which is java based.
Any ideas how to fix this? The code I use is:
final JFileChooser fc = new JFileChooser();
int returnVal = fc.showOpenDialog(WriteSpreadSheetToCsv.this);
I'm pretty sure this was a copy and paste from somewhere on the web.
I've a little swing app and part of this uses a basic filechooser. However I've noticed that when you try to order the files by size/name/modified date etc sometimes it works and sometimes not. Is this a common issue as I've started noticing it in other applications such as SqlDeveloper (oracle) which is java based.
Any ideas how to fix this? The code I use is:
final JFileChooser fc = new JFileChooser();
int returnVal = fc.showOpenDialog(WriteSpreadSheetToCsv.this);
I'm pretty sure this was a copy and paste from somewhere on the web.