I want to pass command-line arguments to an applet. How do I do this? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 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 Antwort
+ 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