Does any one know how to read the header of a file in java using "magic numbers" or ascii values to get the name of the extension of a file
|
closed as not a real question by Brian Roach, minitech♦, Mitch Wheat, Perception, cHao Nov 19 '11 at 5:26
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Maybe not the answer you wanted, but as you gave us very little information ... In unixoid systems (Linux, Mac, *BSD) you have the file command, that
E.g.
Using Runtime.exec(...) you could invoke that program and parse its output. Edit 1:To determine if a given file is a PNG:
Edit 2:Sometimes URLConnection.getContentType() works, too, for local files:
But your comments sound like you have to implement the method by yourself, not using external programs (?). |
|||||||
|
|
You can try JFileChooser. Here is an example.
This will output Text Document. If it is a MP3 file passed then the output will be MP3 Format Sound. |
||||
|
|
