可以转换下,例如:
String s = "5.05993595E9"; double d = Double.parseDouble(s);System.out.println(d); long l = (long)d;System.out.println(l);