RE: System parameters

1999-12-14 Thread Colin Burroughs
Hi, >I'm not quite sure what you mean by non-standard system parameters - so I'll >leave that for someone else. ermmm this kind of thing... java.util.Properties prop = System.getProperties(); java.util.Enumeration en = prop.propertyNames(); for (int i=0; en.hasMoreElements(); i++) {

RE: System parameters

1999-12-14 Thread Mike Cannon-Brookes
I'm not quite sure what you mean by non-standard system parameters - so I'll leave that for someone else. To start a Java class at startup, make it a servlet and set it to autoload. This way you can also govern the startup order (see the docs for details) if you want to startup many classes at on