Java核心代码例程之:StringToInt.java

发表于:2007-06-22来源:作者:点击数: 标签:

   
/**
 * Demo how to convert int to String and back.  Similar
 * stuff can be done with the Float, Double, etc. classes

 * in java.lang
 ***/
public class StringToInt
{
    public static void main(String args[]) throws Exception
    {
        // From String to int
        String sA="123";
        int iA=Integer.parseInt(sA);
        
        // From int to String
        int iB=23;
        String sB = String.valueOf(iB);
    }
}

原文转自:http://www.ltesting.net