System.setProperty is safe in java?

前端 未结 4 848
囚心锁ツ
囚心锁ツ 2020-12-20 06:11

In java to pass the values between some classes we can use System.setProperty. But using System.getProperties() we can get all the system propertie

4条回答
  •  没有蜡笔的小新
    2020-12-20 06:50

    If you need to worry about the behavior of libraries, you need to learn about and use a security policy and a SecurityManager. Amongst other things, this will allow you to restrict the use of System.setProperty.

提交回复
热议问题