- 1、本文档共6页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
记事本原理
第一》绘制主界面。
第二》实现监听器。
1》 实现打开菜单。
if(p.getActionCommand()==打开(0))
{
try
{
if(this.choose.APPROVE_OPTION ==this.choose.showOpenDialog(this))
{
path=this.choose.getSelectedFile().getPath();
file_name=this.choose.getSelectedFile().getName();Filefile=newFile(path);
intflength=(int)file.length();
FileReaderfReader=newFileReader(file);char[]data=newchar[flength];fReader.read(data,0,flength);text.setText(newString(data));
state.setText(JAVA记事本------+path+共+flength+字节);text.setCaretPosition(0);
}
}catch(IOExceptione){ }
}
2》 实现保存菜单。
if(p.getActionCommand()==保存(S))
{
//如果文件名为空,说明文件未被创建,弹出另存为对话框
if(file_name==null)
{
OtherSave();
}
try
{
Filesavefile=newFile(path);savefile.createNewFile();
FileWriterfw=newFileWriter(savefile);fw.write(text.getText());
fw.close();
}catch(IOExceptione){ }
}
3》 实现另存为菜单。
publicvoidOtherSave()
{
if(choose.APPROVE_OPTION ==choose.showSaveDialog(this))
{
path=choose.getSelectedFile().getPath();new_files=newFile(path);state.setText(我的记事本------+path);
file_name=choose.getSelectedFile().getName();
try{
new_files=newFile(path);
new_files.createNewFile();
FileWriterfw=newFileWriter(new_files);fw.write(text.getText());
fw.close();
}catch(IOExceptione){ }
}
4》 实现退出菜单。
5》 实现查找菜单。
6》 实现替换菜单。
7》 实现字体颜色菜单。
if(p.getActionCommand()==字体颜色)
{
//调用颜色面板,设置前景就可更改字体颜色JColorChooserjColor=newJColorChooser();Colorfcolor=text.getForeground();
text.setForeground(jColor.showDialog(text,选择字体颜色,fcolor));
}
8》 实现关于记事本菜单。
三》实现点击右键菜单/
classCloseWindowextendsWindowAdapter
{
MyFramemf;CloseWindow(MyFramemf)
{
this.mf=mf;
}
publicvoidwindowClosing(WindowEvente)
{
JOptionPane.showMessageDialog(null,欢迎使用我的记事本!,退出
,JOptionPane.INFORMATION_MESSAG)E;
mf.dispose();System.exit(0);
}
}
文档评论(0)