Terai Atsuhiro 2021-06-06 (日) 17:31:59

JFileChooser fileChooser = new JFileChooser();
fileChooser.addChoosableFileFilter(new FileFilter() {
  public boolean accept(File file) {
    if(file.isDirectory()) return true;
    if(file.getName().toLowerCase().endsWith(".jpg")) return true;
    return false;
  }
  public String getDescription() {

  }
});