我的问题是当我的showopendialog
出现并按下取消或右上角的X而不是在我的文本区域中加载一些文本时,控制台会在我的行nullpointexception
上显示错误String filename=f.getAbsolutePath();
1}}
我的操作已打开,位于菜单栏上。
谢谢。
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);
}
答案 0 :(得分:1)
如果在未选择文件的情况下关闭,则无法获取文件的绝对路径。始终通过检查showOpenDialog()
方法返回的值来检查用户是否已选择文件。只有在检查后才能获得绝对路径。
有用的阅读:The JFileChooser docs。
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);
}
}
答案 1 :(得分:0)
您好我修改了您的代码,请查看以下示例:
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
方法的返回值才能知道所选的选项,希望对您有所帮助
欢呼声。