sum2000
sum2000

Reputation: 1393

Java class loader security handling

It is said that class loader of java adds security to JRE , if its function is to load all of the classes how can it provide security to java,can you shed some light on this topic,any help is appreciated. I am talking about security from network sources,security from those classes imported from network.

Upvotes: 0

Views: 183

Answers (1)

s.r
s.r

Reputation: 2577

This link might help. Java can provide a "sandbox" environment which can be customized. It restricts class from accessing resources outside the sandbox.

Upvotes: 1

Related Questions