H
Hal Vaughan
I'm working on a small JApplet class that is a wrapper class. It will call
the main class, which can also be run on a system as an application. I'll
be using this JApplet class in different contexts, so I'd like it to get a
list of the parameters passed to it from the web page. All I can find is
the getParemeter() method. I can't find anything that will let me get a
list of all the parameters. Is there a way to do that?
I figured I could get a list of parameter names and use that to get each
parameter value, then pass them on to the primary class file as a String[]
object. That way the primary class for this and future applets can all be
called from a main() function in the application class and from a JApplet
class as well.
Thanks!
Hal
the main class, which can also be run on a system as an application. I'll
be using this JApplet class in different contexts, so I'd like it to get a
list of the parameters passed to it from the web page. All I can find is
the getParemeter() method. I can't find anything that will let me get a
list of all the parameters. Is there a way to do that?
I figured I could get a list of parameter names and use that to get each
parameter value, then pass them on to the primary class file as a String[]
object. That way the primary class for this and future applets can all be
called from a main() function in the application class and from a JApplet
class as well.
Thanks!
Hal