In java, Integer is 32bit and Short is 16bit.
I was trying to combine 2 Short into a signle Integer, and want to restore them some time.
one Short value stores at the higher 16bit, and another stored at the lower 16bit.
For example, I want 2 Short value (99, 100) be stored in one Integer x, and extract them out sometime.
At first I tried the bit operation (<< 16), but cannot restore the two numbers.