Alternative Java Applet to access the file system from the Internet

I would like to integrate the application into a website that allows the user to manipulate files on their local machine through a web browser.

Flash and Silverlight work with low resolutions and without access to the file system.

Are there any alternatives to using the java applet?

+6
java applet file-upload
source share
3 answers

You can use Java Web Start, or if you can leave with the desktop application, use Adobe Air.

+1
source share

You can use an ActiveX control, but it will only work in IE.

+1
source share

I am not an expert in Java Web Start, but I used JWS deployment in the project in a similar way. Given that the application is signed and the JNLP file provides full access, you must have access to local files. It is worth noting that when deploying JWS, the application is not isolated in the browser, and permissions are set through the JNLP file. For further reference, you should read the JWS tutorial in Oracle.

0
source share

All Articles