does browser support Double.parseDouble()?

hi,

i have used Double.parseDouble() method in my program. After i run that program in browser, it shows error "Double.parseDouble() method not found". Doesnt browser support Double.parseDouble()? Can anybody tell me how to solve this error? (i have also tried Float.parseFloat(),but same error occurs) Please help me.

Thanks in advance,

Kalpana.

[378 byte] By [kvkalps] at [2007-9-26 2:25:55]
# 1
If you are using a jsp page(are you) you must import the right package.AB
abhattachar at 2007-6-29 9:37:52 > top of Java-index,Archived Forums,Java Programming...
# 2
parseDouble is only part of java sinceJDK 1.2 browser by default only support 1.1.Spieler
spieler at 2007-6-29 9:37:52 > top of Java-index,Archived Forums,Java Programming...
# 3

Newer non-Microsoft browsers such as Netscape 6 and Opera 5 support JDK 1.3. I think IE 5.1 for Mac OS X will use the JDK 1.3 installed on the computer, also. It's only older browsers and IE for Windows and Mac OS 9.1 and before that do not support JDK 1.3. Unfortunately, that's 90% of all browsers! :-(

schapel at 2007-6-29 9:37:52 > top of Java-index,Archived Forums,Java Programming...
# 4
And how could I now work around the missing Double.parseDouble(), if I have to use JDK 1.1 ?Do the parsing myself char by char - or is there another trick?
Hartmut at 2007-6-29 9:37:52 > top of Java-index,Archived Forums,Java Programming...
# 5
Please ignore - found it just after I had continued the searching:Double.valueOf()
Hartmut at 2007-6-29 9:37:52 > top of Java-index,Archived Forums,Java Programming...