How java is secure

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • 1502808
    New Member
    • Aug 2007
    • 1

    How java is secure

    as a feature of java ,how we can say java is secure ?
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by 1502808
    as a feature of java ,how we can say java is secure ?
    Every single feature of Java that *can* affect a host computer is checked by a
    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

    Comment

    • praveen2gupta
      New Member
      • May 2007
      • 200

      #3
      Originally posted by 1502808
      as a feature of java ,how we can say java is secure ?
      Hi
      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

      Working...