Hi
We want to know why java is more secure programing language compare with other ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
mayur kohliPosted Sep 23, 2017, 2:06 AM
Sam HobbsPosted Jan 18, 2012, 2:56 AM
Does secure refer to developers using Java that know what they are doing and that attempt to do something they are not supposed to do, or are you refering to developers using Java that do not know what they are doing and that make mistakes?
Or are you refering to Java programs executing in an internet client browser sesssion? Are you then refering to programs executing in another browser window or are you refering to programs executing outside of the internet browser application?
Or are you refering to Java programs executing in a stand-alone (console) window that is safe from other programs executing in other processes?
Or are you refering to the protection of Java programs from other developers that want to copy what you have done in your programs?
AartiPosted Jan 17, 2012, 11:27 PM
Java is considered more secure than other languages for several reasons:
My answer may differ
Java's security model is focused on protecting users from programs downloaded from sources across a network. Java programs run in Java Runtime Environment. Java Programs can't take any action outside those boundaries. For example, Programms are prohibited from many activities, including:
* Reading or writing to the local disk
* Making a network connection to any host, except the host from which the applet came
* Creating a new process
* Loading a new dynamic library and directly calling a native method