Here is a Java Program to Find the Extension of Given File Using JOptionPane Dialog Box
Output of Above Java Program
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | import javax.swing.*; class FileExt { public static void main(String[] args) { //... Declare local variables. String fileName; // The file name the user entered. String extension; // The extension. //... Input a file name and remove whitespace. fileName = JOptionPane.showInputDialog( null , "Enter file name." ); fileName = fileName.trim(); //... Find the position of the last dot. Get extension. int dotPos = fileName.lastIndexOf( "." ); extension = fileName.substring(dotPos); //... Output extension. JOptionPane.showMessageDialog( null , "Extension is " + extension); } } |
Output of Above Java Program