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/ […]