微信公众平台开发入门教程图文详解全面呈现
654
2022-10-25
从网络字节流中读取2个字节拼装成为short
/** * 从网络字节流中读取2个字节拼装成为short * * @param from * @param fromIndex * @return */ public static short getShortData(byte[] from, int fromIndex) { if (from == null) { return 0; } int ch1 = from[fromIndex] & 0xff; int ch2 = from[fromIndex + 1] & 0xff; return (short) ((ch1 << 8) + (ch2 << 0)); }
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~