Download java applet from web page

Is there a way to download the applet embedded in the website www.abc.com 1 into one system?

Or can you extract its code for offline use?

+6
source share
3 answers

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

+4
source

You can try to check the source of the page to see the archive file that it uses. In this case, it looks like it is using http://www.falstad.com/dotproduct/dotproduct.jar . You can use this in a project, but the source will not be attached.

+3
source

The applet http://www.falstad.com/dotproduct/ can be used offline. I checked it to make sure.

You will need to download dotproduct.jar (the link on the page — are you familiar with “View Source”?) To the local file system, then create HTML (or use a copy of Paul Falstad’s own HTML code) to run it.

You can try "Save Page As" for part 2 nd but I'm not sure if it also loaded the Jar of the applet itself.

Of course, it would be polite to tell Paul what you are doing. You may find that he will be ready to send you a Zip HTML / applet.

+2
source

Source: https://habr.com/ru/post/899430/


All Articles