JFileChooser showOpenDialog does not give you the ability to change the title of the dialog box (see docs ). For this you need to use some more code. The sample code in the documentation is close:
JFileChooser chooser = new JFileChooser(); FileNameExtensionFilter filter = new FileNameExtensionFilter( "JPG & GIF Images", "jpg", "gif"); chooser.setFileFilter(filter); chooser.setDialogTitle("Add new file"); int returnVal = chooser.showOpenDialog(parent);
fleed source share