How can I save Java games for offline play?
September 14, 2004 12:38 PM Subscribe
You know those fun little addicting Java games on the web? Is there any way to snatch them out of whatever buffer they reside in, and save them to your hard drive for future offline play?
It won't work for any resource files it also tries to load - e.g. if it downloads it's images seperately, you won't be able to play offline
posted by BigCalm at 2:36 AM on September 15, 2004
posted by BigCalm at 2:36 AM on September 15, 2004
This thread is closed to new comments.
java: view source, search for "applet code" (or ".class") and look for a .class file near it. save the source in your preferred directory. load the .class file from your browser address bar and save it to the same directory. run the copy of the source to play it.
flash: view source, search for "embed" (or ".swf") and look for a .swf file near it. load it from your browser address bar and save it. it will play in any web browser offline.
This doesn't work with some games (like popcap games).
posted by donth at 1:06 PM on September 14, 2004