我正在编写一个程序来从JFileChooser
. 如何获取文件类型(例如,该文件是“ .dat ”的“ .txt ”还是“ .html ”等)
我有以下代码。我应该添加什么额外的行?
JFileChooser choice = new JFileChooser();
int option = choice.showOpenDialog(this);
if (option == JFileChooser.APPROVE_OPTION)
{
String path=choice.getSelectedFile().getAbsolutePath();
String filename=choice.getSelectedFile().getName();
System.out.println(path);
listModel.addElement(path);
System.out.println(filename);
}