我正在探索 Jfilechooser。我已经在 Jfilechooser 中获得了文件路径。现在我想显示文件名、文件大小、位置和访问权限等信息。他们是否只能使用文件路径显示这些信息。任何人都可以帮帮我?我希望它显示在 TextArea 中。
这就是我弹出 Jfilechooser 的方式。
private void browsebuttonActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
JFileChooser chooser = new JFileChooser();
chooser.showOpenDialog(null);
File f = chooser.getSelectedFile();
String filename = f.getAbsolutePath();
fieldlocation.setText(filename);
}