你好傢伙我正在使用JTextArea在java swing中編寫一個簡單的gui編輯器。但現在我想要能夠右鍵單擊並選擇剪切,複製,粘貼和選擇全部並可能更改字體。我需要幫助實現剪切,複製或粘貼JTextArea選項。幫助將不勝感激。 下面是我的代碼片段:需要幫助在JTextArea中實現mouselistener
public class Example extends JPanel
{
private JTextArea area;
private JScrollPane scpane;
public Example()
{
super("My Text Editor");
setUp();
}
private void setUp()
{
area = new JTextArea();
scpane= new JScrollPane(area);
area.addMouseListener(
new MouseAdapter()
{
public void mousePressed(MouseEvent e)
{
if(e.getButton()==MouseEvent.BUTTON3)
{
//having difficulty how to set up the copy, cut or paste option
//with the mouse in JTextArea.
}
}
});
}
}
}
*「我需要幫助實施該選項..」* SO不是幫助臺,它是問答網站。把'右鍵點擊java'放到你最喜歡的搜索引擎中,並按照5個頂部鏈接。自己嘗試一下。如果您有特定的*問題*和[MCVE](http://stackoverflow.com/help/mcve)或[SSCCE](http://www.sscce.org/),請回復我們。投票結束這個「太廣泛」。 – 2014-12-03 00:49:22