我制作了一个应用程序来浏览文件并将文件的绝对路径放入文本字段中。虽然我可以在单击浏览按钮时浏览文件,但文件路径不会出现在文本字段中。你能帮我找出错误吗?提前致谢
private void browse3ActionPerformed(java.awt.event.ActionEvent evt) {
JFileChooser Chooser = new JFileChooser();
Chooser.setMultiSelectionEnabled(true);
Chooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
int result = Chooser.showDialog(this,"Open/Save");
if(result == JFileChooser.APPROVE_OPTION)
{
File file = Chooser.getSelectedFile();
resultFilePath = file.getAbsolutePath();
}
}