Copy/Paste not working in a signed Applet

前端 未结 4 1273
予麋鹿
予麋鹿 2020-12-03 15:43

I\'ve a signed applet (which verifies correctly with jarsigner) that for some reason will not allow copy and paste from the system clipboard into a

4条回答
  •  有刺的猬
    2020-12-03 16:29

    1. Take a backup of java.policy which is at (Ex: C:\Program Files (x86)\Java\jre7\lib\security)

    2. Look for line in java.policy file // "standard" properies that can be read by anyone

    3. Then modify java.policy and add as below

    // "standard" properies that can be read by anyone permission java.security.AllPermission;

提交回复
热议问题