Java Integer to String int2String(int i)

Here you can find the source of int2String(int i)

Description

Converts an integer to its string representation.

License

Apache License

Declaration

public static String int2String(int i) 

Method Source Code

//package com.java2s;
/*/*from   w w  w  .ja  v a  2 s  .  c  o  m*/
 *   Copyright 2007 skynamics AG
 *
 *   Licensed under the Apache License, Version 2.0 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *   Unless required by applicable law or agreed to in writing, software
 *   distributed under the License is distributed on an "AS IS" BASIS,
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *   See the License for the specific language governing permissions and
 *   limitations under the License.
 */

public class Main {
    /**
     * Converts an integer to its string representation.
     * @nowarn
     */
    public static String int2String(int i) {
        return Integer.toString(i, 10);
    }
}

Related

  1. convertIntToString(int value)
  2. convertIntToString(int value)
  3. int2str(int someint)
  4. int2String(int i)
  5. int2String(int i, int subNum)
  6. int2string(int n)
  7. int2string(int[] a)