How to get all the image files from a folder in Java? – Genuine Coder

How to get all the image files from a folder in Java?

Filter Image files from folder

Filter image files from a folder in Java

Let’s see how to filter-out only image files from a directory in Java. We will write code to iterate through all the files present in a directory, and then filter out only the image files by their extension. In the following example snippet, .jpg, .png, .gif and .webp images will be selected from the given folder.

  • Pass the directory from which images should be found as the parameter
  • Specify the image extension for the required images in the list supportedImageExtensions
private List<File> getAllImageFilesFromFolder(File directory) {
  //Get all the files from the folder
  File[] allFiles = directory.listFiles();
  if (allFiles == null || allFiles.length == 0) {
    throw new RuntimeException("No files present in the directory: " + directory.getAbsolutePath());
  }

  //Set the required image extensions here.
  List<String> supportedImageExtensions = Arrays.asList("jpg", "png", "gif", "webp");

  //Filter out only image files
  List<File> acceptedImages = new ArrayList<>();
  for (File file : allFiles) {
    //Parse the file extension
    String fileExtension = file.getName().substring(file.getName().lastIndexOf(".") + 1);
    //Check if the extension is listed in the supportedImageExtensions
    if (supportedImageExtensions.stream().anyMatch(fileExtension::equalsIgnoreCase)) {
      //Add the image to the filtered list
      acceptedImages.add(file);
    }
  }

  //Return the filtered images
  return acceptedImages;
}

Comments

53 responses to “How to get all the image files from a folder in Java?”

  1. … [Trackback]

    […] Read More here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  2. … [Trackback]

    […] Information on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  3. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  4. … [Trackback]

    […] Info to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  5. … [Trackback]

    […] Find More Info here to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  6. … [Trackback]

    […] Read More here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  7. … [Trackback]

    […] Find More on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  8. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  9. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  10. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  11. … [Trackback]

    […] Read More on on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  12. … [Trackback]

    […] Find More on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  13. … [Trackback]

    […] Read More Info here to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  14. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  15. … [Trackback]

    […] Info to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  16. … [Trackback]

    […] Information on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  17. … [Trackback]

    […] Read More Information here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  18. … [Trackback]

    […] Find More Info here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  19. … [Trackback]

    […] There you will find 33482 more Information to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  20. … [Trackback]

    […] Read More Information here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  21. … [Trackback]

    […] Read More Info here to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  22. … [Trackback]

    […] Read More Information here to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  23. … [Trackback]

    […] Information on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  24. … [Trackback]

    […] There you can find 57852 more Info to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  25. … [Trackback]

    […] Read More Info here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  26. … [Trackback]

    […] Find More Info here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  27. … [Trackback]

    […] Here you will find 39723 more Information to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  28. … [Trackback]

    […] Here you can find 35607 more Info to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  29. … [Trackback]

    […] Read More here to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  30. … [Trackback]

    […] Read More Information here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  31. … [Trackback]

    […] There you will find 95810 additional Info on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  32. … [Trackback]

    […] Here you can find 892 more Information to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  33. … [Trackback]

    […] Read More Information here to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  34. … [Trackback]

    […] Read More Information here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  35. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  36. … [Trackback]

    […] There you will find 20797 additional Information on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  37. … [Trackback]

    […] There you will find 1220 additional Info on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  38. … [Trackback]

    […] Information on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  39. … [Trackback]

    […] Find More Information here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  40. … [Trackback]

    […] Read More Information here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]

  41. where to purchase androxal online

    order androxal price prescription

  42. purchase enclomiphene cheap pharmacy

    how to buy enclomiphene cost per tablet

  43. buying rifaximin generic dosage

    get rifaximin cheap prescription

  44. cheapest buy xifaxan generic extended release

    Buy xifaxan online canadian no script

  45. cheap staxyn usa suppliers

    cheapest buy staxyn generic free shipping

  46. online order avodart usa discount

    how to buy avodart buy safely online

  47. online order dutasteride canada generic

    discount dutasteride buy mastercard

  48. cheapest buy flexeril cyclobenzaprine purchase to canada

    how to buy flexeril cyclobenzaprine buy online no prescription

  49. cheap gabapentin price on prescription

    cheapest buy gabapentin australia suppliers

  50. discount fildena generic cheap

    fildena with doctor consult

  51. purchase itraconazole buy adelaide

    purchase itraconazole uk where buy

  52. jak získat dámské kamagra ad whas náklady

    100 mg kamagra

  53. kamagra sans ordonnance canadienne

    acheter kamagra medicament generique

Leave a Reply Cancel reply

Exit mobile version