62,635
社区成员




File imageFile = chooser.getSelectedFile(); //chooser是JFileChooer的一个实例
String filePath = imageFile.getAbsolutePath();
File imageFile = new File(chooser.getSelectedFile()); //chooser是JFileChooer的一个实例
String filePath = imageFile.getAbsolutePath();