From: D-Man <ds...@ri...> - 2001-06-18 20:00:37
|
On Mon, Jun 18, 2001 at 03:53:49PM -0500, ron greene wrote: | I downloaded JDK 1.1.8 as suggested and eventually was able to | produce a simple applet that extends one of my classes and loads in | Netscape (eventually!) and IE. Each gave errors, however, described | below. Can someone tell me why these are occuring, and what I | should do about them? | | Under IE, I don't know how to capture the output from the Java | Console, but the messages were | | com.ms.security.SecurityExceptionEx[org/python/core/Py.initProperties]: Unable | to access system properties. Not sure about this. | as well as a message indicating an inability to find the java.util.HashMap | class (as with Netscape, below) http://java.sun.com/products/jdk/1.2/docs/api/java/util/HashMap.html Since: JDK1.2 java.util.HashMap didn't exist until Java 2. Use java.util.Hashtable instead. | Under Netscape: | Netscape Communications Corporation -- Java 1.1.5 _old_ JVM ;-). Netscape 6 uses JDK 1.3.0 (not that you can tell your users to upgrade their web browser anyways). -D |