Reputation:
does anyone know how to save a file image with previously show a dialog to choose where the location is and input a name of the file?
thanks for your response, appreciate it
Upvotes: 3
Views: 2640
Reputation: 44821
You don't specify a technology, with swing you can use JFileChooserDialog, see here for more info.
JFileChooserDialog fcd = new JFileChooserDialog(); fcd.showSaveDialog(component);
Upvotes: 4