我怎样才能从 JFileChooser 得到这个值?

How can I get this value from a JFileChooser?

我想知道是否有办法让用户在按下“接受”(我删除了确认和取消按钮)后在 JFileChooser 中写入文本,例如文本字段 (.getText()).

Screenshot

这是我写的例子:

JFileChooser x=new JFileChooser();
int returnVal=x.showOpenDialog(this);
File file=x.getSelectedFile();
System.out.println(file.getName());

即使该文件不是实际文件,它仍会在您调用 file.getName() 时打印出框中的内容。当我输入随机字符串时,它返回了字符串,即使它不是文件。