java 记事本的撤销 删除 查找 替换 这4个功能

要求给出实现代码和具体的注释!只需要这4个功能十分感谢!如果用javax.swing里类的方法实现最好不行的就请高手自行发挥了别太复杂就行了!一直在等... 要求给出实现代码和具体的注释!
只需要这4个功能
十分感谢!如果用javax.swing里类的方法实现最好
不行的就请高手自行发挥了 别太复杂就行了!
一直在等
展开
 我来答
aimilin6688
推荐于2016-01-03 · TA获得超过1266个赞
知道小有建树答主
回答量:809
采纳率:0%
帮助的人:597万
展开全部
你看看这个行不
http://hi.baidu.com/aimilin/blog/item/9e003b2a57ecb2f0e7cd406b.html

public void Cut()
{
String temp = notebookframe.textarea.getSelectedText();//获得鼠标拖动选取的文本
StringSelection text = new StringSelection(temp);//把待剪切的文本传递给 text 对象
clipboard.setContents(text,null);//将文本放入剪切板中
int start = notebookframe.textarea.getSelectionStart();//获取选中文本的开始位置
int end = notebookframe.textarea.getSelectionEnd();//获取选中文本的结束位置
notebookframe.textarea.replaceRange("",start,end);//选中的区域用""替换
}
public void Copy()
{
String temp = notebookframe.textarea.getSelectedText();//获得鼠标拖动选取的文本
StringSelection text = new StringSelection(temp);//把待剪切的文本传递给 text 对象
clipboard.setContents(text,null);//将文本放入剪切板中
}
public void Stick()
{
Transferable contexts = clipboard.getContents(notebookframe);//获取剪切板中的内容
DataFlavor flavor = DataFlavor.stringFlavor;//剪切板的风格(系统的标准风格)
if(contexts.isDataFlavorSupported(flavor))//判断风格java是否可用
{
try{
String str = (String)contexts.getTransferData(flavor);
int start = notebookframe.textarea.getSelectionStart();//获取选中文本的开始位置
int end = notebookframe.textarea.getSelectionEnd();//获取选中文本的结束位置
notebookframe.textarea.replaceRange(str,start,end);//替换光标所在位置的文本

}
catch(Exception ee){}
}

}
public void Delete()
{
String temp = notebookframe.textarea.getSelectedText();//获得鼠标拖动选取的文本
int start = notebookframe.textarea.getSelectionStart();
int end = notebookframe.textarea.getSelectionEnd();
notebookframe.textarea.replaceRange("",start,end);//选中的区域用""替换

}
public void LookUp()
{
searchfor();
}
public void LookUpNext()
{
if(!notebookframe.textarea.getText().equals(""))
{
search.nextShear();
}
else
{
JOptionPane.showMessageDialog(this,"文本内容不为空时才能使用该功能!","记事本",JOptionPane.WARNING_MESSAGE);
}

}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式