vote up 2 vote down star
1

How can I determine if the OS is little/big endian in Java?

flag

0% accept rate
Why do you want to do this? Java doesn't care and if you're calling native code can't you use that to figure out what architecture you're on? – Amuck Aug 31 at 18:19
Want to do this to know OS details – rupa Aug 31 at 18:28
Duplicate? stackoverflow.com/questions/981549/… – Zed Aug 31 at 18:30
@Zed: I think that question is different. It is asking if the VM itself uses big- or little-endian representation internally, not necessarily how to detect what the OS is using. – sylvarking Aug 31 at 18:52

1 Answer

vote up 16 vote down

Check whether java.nio.ByteOrder.nativeOrder() is equal to ByteOrder.LITTLE_ENDIAN or ByteOrder.BIG_ENDIAN.

link|flag
Thank you very much. That helped – rupa Aug 31 at 18:32
1  
Then mark it accepted by clicking the check – SLaks Aug 31 at 18:40
3  
@rupa By marking an answer will get you additional 2 points :) – Boris Pavlović Aug 31 at 18:42
1  
+1 for having the gumption to ask the OP to "accept" an answer. – sylvarking Aug 31 at 18:50
Much like erickson, +1 - both for the correct answer, and the gumption :) – aperkins Aug 31 at 19:51
show 1 more comment

Your Answer

Get an OpenID
or

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