Android Byte to Char Convert makeChar(byte b1, byte b0)

Here you can find the source of makeChar(byte b1, byte b0)

Description

make Char

Declaration

static private char makeChar(byte b1, byte b0) 

Method Source Code

//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
}

Related

  1. getChar(byte b)