How to use Command-c/Command-v shortcut in Mac to copy/paste text?(如何在 Mac 中使用 Command-c/Command-v 快捷方式复制/粘贴文本?)
问题描述
我有一个想要在 Mac OS X 上运行的 Java Swing 应用程序.我想使用普通的 Mac 复制/粘贴快捷方式将文本复制/粘贴到我的 Java 应用程序的文本字段中.
I have a Java Swing application that i want to run on Mac OS X. I want to use the normal Mac copy/paste shortcuts to copy/paste text to a text field in my Java application.
Ctrl+c &Ctrl+v 可以解决问题,但我想使用 Command+c &Command+v 代替.我该怎么做?
Ctrl+c & Ctrl+v does the trick but i want to use Command+c & Command+v instead. How can i do that?
推荐答案
如果您使用的是 3rd-party L&F 实现,它可能不支持 Mac 的本机键盘快捷键.以下代码应在设置 L&F 后恢复 Mac 的 JTextField
s 键盘快捷键:
If you're using a 3rd-party L&F implementation it probably doesn't support the Mac's native keyboard shortcuts. The following code should reinstate the Mac's keyboard shortcuts for JTextField
s after setting the L&F:
InputMap im = (InputMap) UIManager.get("TextField.focusInputMap");
im.put(KeyStroke.getKeyStroke(KeyEvent.VK_C, KeyEvent.META_DOWN_MASK), DefaultEditorKit.copyAction);
im.put(KeyStroke.getKeyStroke(KeyEvent.VK_V, KeyEvent.META_DOWN_MASK), DefaultEditorKit.pasteAction);
im.put(KeyStroke.getKeyStroke(KeyEvent.VK_X, KeyEvent.META_DOWN_MASK), DefaultEditorKit.cutAction);
当然,如果您检测到应用程序正在 Mac 上运行,您只需要这样做,这样您就不会影响其他操作系统的键盘映射.
Of course you'll only need to do this if you detect that the application is running on a Mac so that you don't affect the keyboard mappings for other OS's.
这篇关于如何在 Mac 中使用 Command-c/Command-v 快捷方式复制/粘贴文本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Mac 中使用 Command-c/Command-v 快捷方式复制/粘贴文本?
基础教程推荐
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 降序排序:Java Map 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01