检测Java是否处于保护模式,以及Java有哪些权限
我需要一种方法来检测 Java 是否处于保护模式,以及 Java 具有哪些权限。如果我能在 C# 中得到它,那就太棒了,但我的猜测是,在 Java 中它会是最简单的(如果是这种情况,有关于如何将其链接到 Visual Studio 项目的想法吗?)感谢您的帮助!
I need a way of detecting whether or not Java is in Protected mode, and what permissions Java has. It would be awesome if I could get this in C#, but my guess is that it would be easiest in Java (if that is the case, any idea on how to link it into a Visual Studio project?) Thanks for the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你问是否有一个活跃的安全管理器?调用 System.getSecurityManager() 并查看它是否返回 null。
Are you asking whether there is an active security manager? Call
System.getSecurityManager()
and see if it returns null.