-->

Allow Java applet to file system access and record

2019-08-02 23:35发布

问题:

I'm writing java applet sound recorder, so it needs to have recording permission and also needs to have file access (for storing tmp files during mp3 conversion). It's an intranet application which will run on couple hundreds machines so I wonder if it is possible to achieve that without modifying policy file and granting permissions on each machine.

回答1:

..so I wonder if it is possible to achieve that without modifying policy file and granting permissions on each machine.

Sure. Digitally sign the code using a valid code signing certificate, and get the user to tick the 'always allow' check box when launching the app.

Unless you mean 'without digitally signing the code'. Then - no, it isn't.