| Author: Kundan Kumar Sinha 09 Sep 2008 | Member Level: Gold | Rating: Points: 1 |
Hi Amit,
We can not download Applet from any web site.
Regards, Kundan
|
| Author: Kundan Kumar Sinha 09 Sep 2008 | Member Level: Gold | Rating:  Points: 2 |
Hi,
As we know Applet is a JAVA application. We can not download Applet from any web site.
To download the application we have to download the class file of that Applet.
Regards, Kundan
|
| Author: Shanthi M 09 Sep 2008 | Member Level: Gold | Rating:  Points: 4 |
We can extract Applet from the website(HTML).
In HTML, add the following code
<APPLET CODE="MyApplet.class" WIDTH=200 HEIGHT=50> </APPLET>
// Here MyApplet is a class in the MyApplet.java file. Before adding, MyApplet file is compiled and produces MyApplet.class file.
We can get Applet code in the website.
|
| Author: Lord of Kings 17 Oct 2008 | Member Level: Silver | Rating:  Points: 2 |
one can not download Applet from any web site.similarly as one cannot download any .class file. a applet file in that place is a .class file placed as <applet code=" ....." ...........></applet>
|