Java Byte to ASCII byteToAscii(final byte byteToAscii)

Here you can find the source of byteToAscii(final byte byteToAscii)

Description

byte To Ascii

License

Open Source License

Declaration

public static char byteToAscii(final byte byteToAscii) 

Method Source Code

//package com.java2s;
/* JMultiPatcher - yet another rompatcher utility
 Copyright ? 2014 Josef Andersson <josef.andersson@fripost.org>
    /* w w w  .j  a va2 s  .co  m*/
 This file is part of JMultiPatcher.
    
 JMultiPatcher is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 any later version.
    
 JMultiPatcher is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
    
 You should have received a copy of the GNU General Public License
 along with JMultiPatcher.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    public static char byteToAscii(final byte byteToAscii) {
        return (char) byteToAscii;
    }
}

Related

  1. byteToASCII(final byte b)
  2. byteToASCII(final byte b)
  3. byteToAscii(int val)