how to set JBBPByteOrder for JBBPParser ?
leepwang opened this issue · 3 comments
leepwang commented
hello:
byte[] data,is generated by JBBPOut, which use JBBPByteOrder.LITTLE_ENDIAN;
how to parse ? I can not find any test case in JBBPMapperTest.java
thanks
raydac commented
it would be good to provide some example how you processing data
if you parsing by script, then just mark fields by >
to show parser that they are big-endian ones, like >int a;
leepwang commented
thanks, got it