Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Download java applet from webpage

Tags:

java

applet

Is there any way to download an applet embedded in a webpage of a site www.abc.com1, to one's system?

Or is it possible to extract its code for offline use?

  1. E.G. http://www.falstad.com/dotproduct/
like image 546
user980411 Avatar asked Oct 17 '11 05:10

user980411


People also ask

Can Java applets run from a web browser?

Applets are run inside a web browser via the web browser's "Java Plug-in". This "Java Plug-in" provides a "Java Console", for managing the Java Plug-in and the applets.


2 Answers

For the link provided, I see the link "Zip archive of this applet.". It contains the applet jar, html page and the java source file.

like image 161
Manish Avatar answered Sep 30 '22 05:09

Manish


You can try to inspect the page source to see the archive file it is using. In this case, it appears as if it is using http://www.falstad.com/dotproduct/dotproduct.jar. You can use this in a project, but the source will not be attached.

like image 27
Jon Newmuis Avatar answered Sep 30 '22 07:09

Jon Newmuis