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; }
… [Trackback]
[…] Read More here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Information on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Find More to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Info to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Find More Info here to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Read More here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Find More on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Read More to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Find More to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Read More to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Read More on on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Find More on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Read More Info here to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Find More to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Info to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Information on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Read More Information here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Find More Info here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [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/ […]
… [Trackback]
[…] Read More Information here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Read More Info here to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Read More Information here to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Information on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [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/ […]
… [Trackback]
[…] Read More Info here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Find More Info here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [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/ […]
… [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/ […]
… [Trackback]
[…] Read More here to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Read More Information here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [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/ […]
… [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/ […]
… [Trackback]
[…] Read More Information here to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Read More Information here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Find More to that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [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/ […]
… [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/ […]
… [Trackback]
[…] Information on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Find More Information here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
… [Trackback]
[…] Read More Information here on that Topic: genuinecoder.com/how-to-get-all-the-image-files-from-a-folder-in-java/ […]
where to purchase androxal online
order androxal price prescription
purchase enclomiphene cheap pharmacy
how to buy enclomiphene cost per tablet
buying rifaximin generic dosage
get rifaximin cheap prescription
cheapest buy xifaxan generic extended release
Buy xifaxan online canadian no script
cheap staxyn usa suppliers
cheapest buy staxyn generic free shipping
online order avodart usa discount
how to buy avodart buy safely online
online order dutasteride canada generic
discount dutasteride buy mastercard
cheapest buy flexeril cyclobenzaprine purchase to canada
how to buy flexeril cyclobenzaprine buy online no prescription
cheap gabapentin price on prescription
cheapest buy gabapentin australia suppliers
discount fildena generic cheap
fildena with doctor consult
purchase itraconazole buy adelaide
purchase itraconazole uk where buy
jak získat dámské kamagra ad whas náklady
100 mg kamagra
kamagra sans ordonnance canadienne
acheter kamagra medicament generique