This is the input as string:
"C:\jdk1.6.0\bin\program1.java"
I need output as:
Path-->C:\jdk1.6.0\bin\
file--->program1.java
extension--->.java
Watch out the "\" char. I easily got output for "/".
|
|
The File class gives you everything you need:
EDIT: Thanks Dave for noting that String.lastIndexOf will return -1 if File.getName does not contain '.'. |
|||||||||||||||
|
|
Consider using an existing solution instead of rolling your own and introducing more code that needs to be tested. FilenameUtils from Apache Commons IO is one example: http://commons.apache.org/io/api-1.4/org/apache/commons/io/FilenameUtils.html |
|||||||||||||||||
|
|
Since Java's
Now simply substitute your version of File for Java's version and, when combined with Kurt's answer, gives you everything you need. Notice that using a subclass is ideal because if you wanted to change the behaviour (due to a different operating system using a different extension delimiter token), you need only update a single method and your entire application continues to work. (Or if you need to fix a bug, such as trying to execute In other words, if you extract a file extension in more than one place in your code base, you have made a mistake. Going further, if you wanted to completely abstract the knowledge of the file type (because some operating systems might not use the
I would consider this a much more robust solution. This would seamlessly allow substituting a more advanced file type detection mechanism (analysis of file contents to determine the type), without having to change the calling code. Example:
If a user saved "myfile.png" as "myfile.txt", the image would still be processed because the advanced version (not shown here) would look for the "PNG" marker that starts every single PNG file in the (cyber) world. |
|||||||||
|
|
You need to compensate for the double slashes returned in Path (if it has been programmatically generated).
|
|||
|
|