Allow Java applet to file system access and record

2019-08-02 23:27发布

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条回答
爷的心禁止访问
2楼-- · 2019-08-02 23:56

..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.

查看更多
登录 后发表回答