I have a little problem, I need to do a program that open the file explorer and copy the selected file in a specified directory. I've only found how to open the explorer :
File file = new File ("c:\\<directory>");
Desktop desktop = Desktop.getDesktop();
desktop.open(file);
but I need to get the selected file and copy in a default directory, and I really don't know how to do it. Thanks a lot!!