Here you can find the source of convertIntToString(int value)
public static String convertIntToString(int value)
//package com.java2s; //License from project: Open Source License public class Main { public static String convertIntToString(int value) { return Integer.toString(value); }/*from w ww. j a v a2 s. com*/ }