I have a spec which reads the column specifies a 16 bit offset to a structure and another column specifies a 24 bit offset to a structure. I am implementing the spec using java. I am not clear of what 16 bit offset /24 bit offset means and how to perform such operation in java.
|
An offset is a relative address in some stream and/or storage medium. A 16bit offset is an offset that's stored in a 16 bit variable/slot. So if some file format specification says that "the next field is the 16 bit offset" that means you must read the next 2 byte and treat it as a relative address. What exactly that addresses depends on the specification: it might be bytes, it might be "entries" or anything else. Note also, that Java doesn't have any built-in 24 bit data types, so you'll have to work around that using |
|||
|
|
|
It sounds like you have single piece of data that is segmented into bit series.
The data is probably a One way to simply get at the values is to use a bit mask and right shift, like this:
|
||||
|
|
|
It probably means the boundary of the data starts 16 bits or 24 bits after the start of that structure. How you access it depends on how you got access to the structure to begin with. If it's just something you read into a byte array, some data stored offset 16 bits could be accessed by ignoring the first two elements of the array (2 byte = 8 bits * 2), or 3 for 24 bits. If it's an long or an int, it depends if you can use the |
|||
|
|