在JFileChooser这样的java中是否有任何类型的JSaveChooser?基本上我想在用户点击我的java应用程序中的“保存文件”按钮时显示一个像JFileChooser这样的对话框,用于获取用户保存文件的路径。
答案 0 :(得分:0)
showSaveDialog()方法适合你
JFrame parentFrame = new JFrame();
JFileChooser fileChooser = new JFileChooser();
fileChooser.setDialogTitle("Specify a file to save");
int userSelection = fileChooser.showSaveDialog(parentFrame);
if (userSelection == JFileChooser.APPROVE_OPTION) {
File fileToSave = fileChooser.getSelectedFile();
System.out.println("Save as file: " + fileToSave.getAbsolutePath());
}