I've got the following instruction in Python I'd like to understand and translate in Java
values = struct.unpack_from('>%dL' % 96, input_content, 0) What does >%dL mean? I've checked the doc from python http://docs.python.org/library/struct.html but nothing about the percentage. Shall I consider every returned value as a byte in Java and cast it to either double or long ?
Thanks for your help.