I am trying to parse files with different extension types in my Java program. I just got a strange file which has a unique file format as below.
20121126.033111.vikeng8.28088
I am not sure what is the extension of this particular file. Windows shows type as 28088 File. I think its some kind of a text file. I was not able to find any further information from Google. I can open it in Notepad++ and Notepad.
How can I determine this file extension type from Java? What would be the extension in general for these kind of files?
Further, I need to open this file and read some information from it. Any help would be very useful as i am seeing this kind of strange file for the first time.