作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在我的 Java 应用程序运行时阻止键盘和鼠标的输入。就像我们在 AutoIt 中使用 BlockInput(1) 阻止输入一样,我也想在 Java 中做同样的事情。
最佳答案
我只能回答 Swing 申请。对于你的主框架,你应该有这个
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
//or if you are using awt
Frame frame = new Frame();
frame.addWindowListener(new WindowAdapter() {
// handle the window closing event here
});
关于java - 如何在 Java 中阻止输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6640253/
我是一名优秀的程序员,十分优秀!