how to provide access permission for applet to write on file system
问题 I have problem in setup of policy file for applet.I am doing this first time and don't know how to set the policy file for applet in java.Actually I want to give the permission to the applet to write on the file system. for Which I will have to give file permission to the applet So I make a file named .java.policy and and put the following code in it grant codeBase "file:/C://res/applet/*" { permission java.io.FilePermission "C:\\res\\applet\\test.txt", "read, write"; }; and save this in