bayu adi
bayu adi

Reputation:

Save image file with dialog using java

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

Answers (1)

Tom
Tom

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

Related Questions