Here you can find the source of makeChar(byte b1, byte b0)
static private char makeChar(byte b1, byte b0)
//package com.java2s; public class Main { static private char makeChar(byte b1, byte b0) { return (char) ((b1 << 8) | (b0 & 0xff)); }//www . j a va2 s .c om }