Showing posts with label File extension. Show all posts
Showing posts with label File extension. Show all posts

Wednesday, July 9, 2014

Findout the File Extension in java

How to findout the file extension in java



    public String getFileExtension(File file) {
        String fileName = file.getAbsolutePath()+ file.getName();
       
        String extn = FilenameUtils.getExtension(fileName);
        return extn;
    }