+ 3

I want to pass command-line arguments to an applet. How do I do this?

I want to pass command-line arguments to an applet. How do I do this?

4th Dec 2016, 7:39 AM
Lord Centillion
Lord Centillion - avatar
1 Réponse
+ 1
Html (inside applet tag): <param name="message" value="test"> Java (class extends Applet): String message = this.getParameter("message");
6th Dec 2016, 1:03 PM
AtoMX
AtoMX - avatar