Here you can find the source of intToStr(int val)
public static String intToStr(int val)
//package com.java2s; //License from project: Open Source License public class Main { public static String intToStr(int val) { return "" + val; }//from ww w . j av a 2s . com }