Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to set the byte or word alignment using javolution lib. This is like #pragma in CPP.

I am little bit confuse about the byte order. Please suggest me for the byte Order set in the same library.

share|improve this question

1 Answer

up vote 1 down vote accepted

As per the Javadoc, you need to add some code to your Struct to indicate what byte order will be used to read/write data:

public class MyStruct extends Struct {
    ... 
    public ByteOrder byteOrder() {
        return ByteOrder.LITTLE_ENDIAN;
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.