0

So I was playing around with Java's Reflection API. I wanted to try loading a simple Java applet I found on the internet. Now what I got stumbled upon was applet parameters:

<param name="aparam" value="12345">

Is there a way to do the exact same thing via Java Reflection?

Roman C
  • 49,761
  • 33
  • 66
  • 176

1 Answers1

0

Is there a way to do the exact same thing via Java Reflection?

No. Or rather, if you design an applet stub and attach it to the applet it can provide whatever parameters you want, without using any reflection.

Here is an example I made previously.

Community
  • 1
  • 1
Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433