Java Byte to Char byteToChar(byte b)

Here you can find the source of byteToChar(byte b)

Description

byte To Char

License

Apache License

Declaration

public static char byteToChar(byte b) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static char byteToChar(byte b) {
        return (char) b;
    }/*from  w ww  . j  a  va2s.c  o m*/
}

Related

  1. byteToChar(byte aByte)
  2. byteToChar(byte b_)
  3. byteToChar(byte c)
  4. byteToChar(byte chr)
  5. byteToChar(byte[] bytes)