I wrote some Java applets and linked them to a signed JAR. Although the applets are signed, they should still have some changes on the client regarding the java.policy file. For example, to complete a print job.
To help the end user, the user can load another JAR with a small Swing application that will add entries to their .java.policy .
My questions:
Is there a known library for deploying / delivering / installing java.policy ?
A small application will simply add to .java.policy . If you run it several times, the program will add the same data several times. It would be better if I only add the entry once. For this, I have to .java.policy and write back. Is there any java.policy record management java.policy ?
java security java-8 applet
PeterMmm
source share