.APPLET 파일 확장자
Eclipse Java Applet Policy File
| 개발사 | Eclipse |
| 인기도 |
4.1 | 35 투표 |
APPLET 파일이란 무엇인가요?
Developer file created by Eclipse, a software development application; generated by Eclipse automatically when creating a new applet project and saved to the project root folder as the file java.security.policy; contains security permissions for the applet.
추가 정보
By default, the java.security.policy file contains the following property, which allows all permissions for the applet codebase:
grant {
permission java.security.AllPermission;
};
This permission is generally suitable for local development on the developer's machine. However, it may not be suitable for deploying the applet to a production environment, since the applet's permissions may need to be restricted.
일반적인 .APPLET 파일 이름
java.security.policy - A file automatically generated in Eclipse applet development projects containing the security permissions for the applet.