通过Java程序禁用Ctrl-Alt-Delete事件
我正在使用 JDesktopPane 创建桌面应用程序。我几乎完成了,但是当我按 ctrl + alt + del 时,它离开了我的应用程序。我怎样才能阻止这种行为?
I am creating a desktop application using the JDesktopPane. I'm almost complete, but when I press ctrl + alt + del, it leaves my application. How can I prevent that action?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Alt+Ctrl+Del 无法被覆盖。这是一项安全功能。
Alt+Ctrl+Del cannot be overridden. It is a security feature.
你不能那样做。 Alt+Ctrl+Del 的行为是由操作系统强制执行的,原因很充分:它确保您始终可以退出错误的应用程序。
You cannot do that. The behavior of Alt+Ctrl+Del is enforced by the operating system, for good reasons: it makes sure that you can always bail-out of a faulty application.
http://www.codeproject.com/KB/winsdk/AntonioWinLock.aspx
列出了几种可能性,从禁用任务管理器到注入键盘挂钩。但我怀疑是否有一些内置的 java 功能可以实现这一点。
http://www.codeproject.com/KB/winsdk/AntonioWinLock.aspx
lists several possibilities, from disabling the taskmanager to injecting keyboard hooks. But I doubt there's some built-in java functionality for that.
事实是 Alt+Ctrl+Del 从未真正进入您的应用程序。在将 Alt+Ctrl+Del 发送到您的应用程序之前,Os 会捕获它。所以你无法捕获它。
Fact is Alt+Ctrl+Del never actually entering your application. Os traps Alt+Ctrl+Del before it is send to your application. So you can't trap it.