Here you can find the source of asciiToString(int asciiCode)
public static String asciiToString(int asciiCode)
//package com.java2s; /*/*from w ww . j a v a 2s . co m*/ * This file is part of the TSPHP project published under the Apache License 2.0 * For the full copyright and license information, please have a look at LICENSE in the * root folder or visit the project's website http://tsphp.ch/wiki/display/TSPHP/License */ public class Main { public static String asciiToString(int asciiCode) { return String.valueOf((char) asciiCode); } }