我在从 JTextComponent 工作中获取复制和粘贴方法时遇到了一些问题
对于我的程序,我有一个字符串数组,它们将成为菜单选项。“复制”和“粘贴”是其中的两个。
else if (e.getActionCommand().equalsIgnoreCase("Copy"))
{
JTextArea a = new JTextArea();
a.setEditable(true);
a.copy();
}
else if (e.getActionCommand().equalsIgnoreCase("Paste"))
{
JTextArea a = new JTextArea();
a.setEditable(true);
a.getSelectedText();
a.paste();
}
我没有收到任何错误消息,但它不起作用。任何帮助,将不胜感激