Posts by Luciano S. • 1 point
1 post
-
0
votes0
answers77
viewsQ: Java function equivalent to pack("v",int) in Perl/PHP
I wonder if there is any function in Java equivalent to function pack("v",numero) of Perl and PHP. In perl/php: pack("v",numero) = unsigned short (always 16 bit, little endian byte order) In Java: ?…