Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何阅读操作系统消息?
Java 是否能够从 Java API 监听操作系统消息?当操作系统(在我的情况下是 Windows)进入待机状态时,我希望得到通知,休眠状态。请提出一种可能的方法。
这是一个非常低级的操作系统功能。Java 没有机会注意到这种情况。事实上,由于您的应用程序将在 Ring 3 上运行,因此无论使用哪种编程语言都没有机会检测到这一点。
您的应用程序需要在设备驱动程序和内核运行的更多特权环上运行,以响应睡眠状态。