List of utility methods to do JMenuBar
String | selectSaveFile(JMenuBar menuBar) select Save File JFileChooser fileChooser = new JFileChooser(); fileChooser.setDialogTitle("Specify a file to save"); int userSelection = fileChooser.showSaveDialog(menuBar); if (userSelection == JFileChooser.APPROVE_OPTION) { File fileToSave = fileChooser.getSelectedFile(); System.out.println("Save as file: " + fileToSave.getAbsolutePath()); return fileToSave.getAbsolutePath(); return ""; |