Can anyone out there, pls help. I need to convert
String to a double value...public class
test{public static void main (String [] args){String
stringValue = new String("147.82");Double tempValue =
Double.valueOf(stringValue);double doubleValue =
doubleValue(tempValue);}}But I got error during compilation. The
following is
the error. Pls helpd:\Program Files\Xinox
Software\JCreator LE\MyProjects\test.java:7: cannot resolve
symbolsymbol : method doubleValue
(java.lang.Double)location: class testdouble doubleValue =
doubleValue(tempValue);Anyone had any idea why this is so, cos i follow
it
exactly from the book.