Hi,
what I'd like to do is to use a java applet on my website. But it needs some
information so I was thinking about giving parameters when the applet
starts. But is this possible? When I try code like this in Netbeans the
applet will give errors while starting.
public MyApplet( int argC, String args[] )
{
// the constructor of the applet
}
How to use startup arguments? Or if this is not possible, are their other
good ways to send data to the applet( or let the applet get data from the
website, the data is a long string inside a textbox).
Greetings,
Rick
what I'd like to do is to use a java applet on my website. But it needs some
information so I was thinking about giving parameters when the applet
starts. But is this possible? When I try code like this in Netbeans the
applet will give errors while starting.
public MyApplet( int argC, String args[] )
{
// the constructor of the applet
}
How to use startup arguments? Or if this is not possible, are their other
good ways to send data to the applet( or let the applet get data from the
website, the data is a long string inside a textbox).
Greetings,
Rick
Comment