Here you can find the source of int2str(int someint)
public static String int2str(int someint)
//package com.java2s; /**// w w w .ja v a 2 s. c o m * Converts a line of text into an array of lower case words using a * BreakIterator.wordInstance(). <p> * * This method is under the Jive Open Source Software License and was * written by Mark Imbriaco. * * @param text a String of text to convert into an array of words * @return text broken up into an array of words. */ public class Main { public static String int2str(int someint) { return new Integer(someint).toString(); } }