I'm trying to read ID3v2.3.0 tags from mp3 files, and the values are of mixed type.
For example, the file will start with 3 chars "ID3" followed by two version bytes of values 3 and 0, and the individual frames of the tag are made up of a 4 ASCII char identifier, followed by two flag bytes, then 4 size bytes, and then the content of the (text)frame as a UTF-16 string. example ID3 file
I'm not all that versed in java and there are a lot of file reading classes, which could I use that would be the most comfortable to work with in this scenario?
To clarify, I want to be able to read (unsigned) byte values, ASCII char arrays and UTF-16 char arrays (ideally from the same stream/channel/reader object, or at least without having to close one, create another and skip to my last positon), and I want to avoid as much single-byte-casting as possible.
At the moment I'm using a DataInputStream because it allows me to read unsigned byte values and arrays of signed bytes.