你看看這個行不
目前創(chuàng)新互聯(lián)已為近1000家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)絡(luò)空間、網(wǎng)站托管運(yùn)營、企業(yè)網(wǎng)站設(shè)計(jì)、天水網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
public void Cut()
{
String temp = notebookframe.textarea.getSelectedText();//獲得鼠標(biāo)拖動選取的文本
StringSelection text = new StringSelection(temp);//把待剪切的文本傳遞給 text 對象
clipboard.setContents(text,null);//將文本放入剪切板中
int start = notebookframe.textarea.getSelectionStart();//獲取選中文本的開始位置
int end = notebookframe.textarea.getSelectionEnd();//獲取選中文本的結(jié)束位置
notebookframe.textarea.replaceRange("",start,end);//選中的區(qū)域用""替換
}
public void Copy()
{
String temp = notebookframe.textarea.getSelectedText();//獲得鼠標(biāo)拖動選取的文本
StringSelection text = new StringSelection(temp);//把待剪切的文本傳遞給 text 對象
clipboard.setContents(text,null);//將文本放入剪切板中
}
public void Stick()
{
Transferable contexts = clipboard.getContents(notebookframe);//獲取剪切板中的內(nèi)容
DataFlavor flavor = DataFlavor.stringFlavor;//剪切板的風(fēng)格(系統(tǒng)的標(biāo)準(zhǔn)風(fēng)格)
if(contexts.isDataFlavorSupported(flavor))//判斷風(fēng)格java是否可用
{
try{
String str = (String)contexts.getTransferData(flavor);
int start = notebookframe.textarea.getSelectionStart();//獲取選中文本的開始位置
int end = notebookframe.textarea.getSelectionEnd();//獲取選中文本的結(jié)束位置
notebookframe.textarea.replaceRange(str,start,end);//替換光標(biāo)所在位置的文本
}
catch(Exception ee){}
}
}
public void Delete()
{
String temp = notebookframe.textarea.getSelectedText();//獲得鼠標(biāo)拖動選取的文本
int start = notebookframe.textarea.getSelectionStart();
int end = notebookframe.textarea.getSelectionEnd();
notebookframe.textarea.replaceRange("",start,end);//選中的區(qū)域用""替換
}
public void LookUp()
{
searchfor();
}
public void LookUpNext()
{
if(!notebookframe.textarea.getText().equals(""))
{
search.nextShear();
}
else
{
JOptionPane.showMessageDialog(this,"文本內(nèi)容不為空時才能使用該功能!","記事本",JOptionPane.WARNING_MESSAGE);
}
}
寫一個棧,把前面的操作壓入棧里,撤銷的時候一個個出棧就可以了。。
// ---------------創(chuàng)建撤消操作管理器
protected UndoManager undo = new UndoManager();
protected UndoableEditListener undoHandler = new UndoHandler();
// 撤消
else if (e.getSource() == mEdit_Undo || e.getSource() == popupMenu_Undo || e.getSource() == undoButton) {
Text.requestFocus();
if (undo.canUndo()) {
try {
undo.undo();
} catch (CannotUndoException ex) {
System.out.println("Unable to undo: " + ex);
ex.printStackTrace();
}
if (!undo.canUndo()) {
mEdit_Undo.setEnabled(false);
popupMenu_Undo.setEnabled(false);
undoButton.setEnabled(false);
}
}
}
//兄弟連Java戰(zhàn)狼班