Here you can find the source of unsigned16(short s)
public static long unsigned16(short s)
//package com.java2s; //License from project: Apache License public class Main { public static long unsigned16(short s) { return s & 0xFFFFL; }//from ww w . j a va 2s .c om public static long unsigned16(long s) { return s & 0xFFFFL; } }