[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Question on applets and Double.parseDouble(string)?
"D. Michael Nelson" wrote:
> Hello,
>
> It appears when I attempt to use Double.parseDouble(string) in my applet the
> process terminates when the applet is ran in my browser, however, when I run
> it using the applet viewer it works fine! Any suggestions?
>
> Thanks In Advance,
> D. Micheal Nelson
The "Double.parseDouble(string)" method was introduced with JDK 1.2. The
version of Java in your browser is the 1.1.x" level. Therefore, this method is
not available unless you use the Java plug-in.
Cynthia Jeness