as a feature of java ,how we can say java is secure ?
How java is secure
Collapse
X
-
Originally posted by 1502808as a feature of java ,how we can say java is secure ?
SecurityManager, e.g. an (J)Applet comes with its own security manager
that disallows a lot of actions for the (J)Applet. Even class loading and the class
code itself is under the jurisdiction of a security manager. Read the API docs
for this class for details.
kind regards,
Jos -
Originally posted by 1502808as a feature of java ,how we can say java is secure ?
By default applets can not take input data from the users Ex voice data , They need the third party security authorization. After that they can accept the input from users. I have worked and tested it on voice data. This is meaning of security in applets.Comment
Comment