からファイルを選択するプログラムを書いていますJFileChooser
。ファイルの種類を取得するにはどうすればよいですか (たとえば、そのファイルは " .txt " または " .html " の " .dat " などです)
。次のコードがあります。余分な行を追加するにはどうすればよいですか?
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);
}