convert string to double/int

I am in need of help converting numbers like this "9.6300000e+03" which is of type String into a double or int.

I am reading the numbers from a list of numbers and have no say on the format of the numbers given, but to work with them i need the numbes of type double or int.

Any help would be appreciated!!

Thanks in advance.

[350 byte] By [gurdz_studenta] at [2007-10-2 5:57:14]
# 1
Please see the API documentation for the Double class. You can use Double.parseDouble(the_string) to get a double value.
atmguya at 2007-7-16 2:06:16 > top of Java-index,Administration Tools,Sun Connection...
# 2
> Please see the API documentation for the Double> class. You can use Double.parseDouble(the_string) to> get a double value.Doh ... cant believe i missed that.Cheers!
gurdz_studenta at 2007-7-16 2:06:16 > top of Java-index,Administration Tools,Sun Connection...
# 3
use Double.parseDouble(String); to convert a valid string into a double. :D
Sashank_Javaa at 2007-7-16 2:06:16 > top of Java-index,Administration Tools,Sun Connection...
# 4
class method Integer.parseInt(String ss);
ghhd_7a at 2007-7-16 2:06:16 > top of Java-index,Administration Tools,Sun Connection...