Source Code : Authorized File Writer
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
Authorized File Writer
import java.io.FileWriter;
import java.io.IOException;
public class AuthorizedFileWriter {
public static void main(String[] args) {
System.setSecurityManager(new SecurityManager());
String file = "authorized.txt";
String fileBody = "test";
try {
FileWriter fileWriter = new FileWriter(file);
fileWriter.write(fileBody);
fileWriter.close();
System.exit(0);
} catch (IOException ioException) {
ioException.printStackTrace();
System.exit(1);
}
}
}
/*
// authorized.policy
// Policy file that grants file write permission
// only to file "authorized.txt"
grant {
permission java.io.FilePermission
"authorized.txt", "write";
};
*/
/*
// codebase_authorized.policy
// Policy file that grants write permission to
// file "codebase_authorized.txt" for codebase "C:/myclasses"
grant codebase "file:/C:/myclasses" {
permission java.io.FilePermission
"codebase_authorized.txt", "write";
};
*/
Thank with us