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.
我正在使用 NetBeans 制作程序。是否可以在不按回车的情况下制作按键方法?
Robot类有一些方法可以让这变得相当简单:
Robot r = new Robot(); r.keyPress(KeyEvent.VK_ENTER);
应该让你开始。
如果我正确理解了您的问题,您需要模拟按键事件。如果是这种情况,您需要使用 Robot 类。有关更多信息,请参见此处机器人类