问题描述
我的问题是当我的showopendialog
出现并且我按下取消或右上角的 X 而不是在我的 textarea 中加载一些文本时,控制台在我的行String filename=f.getAbsolutePath();
上显示nullpointexception
的错误String filename=f.getAbsolutePath();
我的操作打开是在菜单栏上。
谢谢你。
JFileChooser flcFile = new JFileChooser("c:\\");
flcFile.showOpenDialog(null);
File f = flcFile.getSelectedFile();
String filename=f.getAbsolutePath();
try {
FileReader reader = new FileReader(filename);
BufferedReader br = new BufferedReader(reader);
txtPersonal.read(br, null);
br.close();
txtPersonal.requestFocus();
}
catch(Exception e)
{
JOptionPane.showMessageDialog(null, e);
}
1楼
如果不选择文件就关闭,则无法获取文件的绝对路径。
始终通过检查showOpenDialog()
方法返回的值来检查用户是否选择了文件。
仅在此检查后获取绝对路径。
有用的阅读: 。
JFileChooser flcFile = new JFileChooser("c:\\");
int result = flcFile.showOpenDialog(null);
if (result == JFileChooser.APPROVE_OPTION) {
File f = flcFile.getSelectedFile();
String filename = f.getAbsolutePath();
try {
FileReader reader = new FileReader(filename);
BufferedReader br = new BufferedReader(reader);
txtPersonal.read(br, null);
br.close();
txtPersonal.requestFocus();
} catch (Exception e) {
JOptionPane.showMessageDialog(null, e);
}
}
2楼
您好,我修改了您的代码,请查看以下示例:
public class Main {
public static void main(String[] args) {
JFileChooser flcFile = new JFileChooser("c:\\");
int result = flcFile.showOpenDialog(null);
File f = flcFile.getSelectedFile();
if (JFileChooser.CANCEL_OPTION == result) {
System.out.println("canceled");
} else if (JFileChooser.APPROVE_OPTION== result) {
String filename = f.getAbsolutePath();
System.out.println(filename);
}else{
System.out.println(result);
}
}
}
您需要检查showOpenDialog
方法的返回值才能知道所选选项,希望对您有所帮助
干杯。