Is there a standard way to read in int, long, float, and double values from a string representation?
Ans : There is no one standard way, but there is a small group of methods and constructors that will do the job for you. The java.lang package in the JDK 1.0.2 provides four classes for treating numbers as objects: Integer, Long, Float, and Double. Each of these classes provides constructors and methods that translate from a string to an instance of the class. You then need to invoke an additional