Reputation: 79
I need a Java applet framework or something like that for syncing files between server and local machine through browser. Of course I can make that applet myself, but maybe someone has already seen or done that applet.
Are there any Java applet frameworks for accessing the local file system through a browser?
Upvotes: 1
Views: 6903
Reputation: 168825
See the Applet info. page for references to 'Next Generation'. Since the Next Generation plug-in, even sand-boxed embedded applets can access the local file-system (with the permission of the user, when prompted).
Next Gen. applets:
Prior to the Next Gen. plug-in, applets could access the local file-system in 3 ways:
Upvotes: 2
Reputation: 4253
By default an applet can't access the local file system. This article discusses the issue. Basically, you need to sign the applet or do some local configuration to turn off the restrictions you can't live with. My advice is to turn off only the restrictions you REALLY need.
Upvotes: 1