java get extension
To get the file name and file extension separately we can do the string manipulation on the file name. Suppose "filename.ext" is some filename with extension is provided. To get the filename and extension we will be calculating the last index of "." and will split the file name from this ".", since characters after this "." represents the extension of the file. GetFileExtension.java is as follows:
GetFileExtension.java
import java.util.*;
|
Output:
| C:\javaexamples>javac
GetFileExtension.java C:\javaexamples>java GetFileExtension document.doc File name =document Extension =doc |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Java example program to get extension View All Comments
Post your Comment