用Java编写的记事本程序 - 编程入门网
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-06-20
ilename); return true; }catch(Exception e) { this.statubar.setText("保存出错: "+e.getMessage()); return false; } }else{ return this.saveas(); } }else{ return true; } } boolean saveas(){//另存为 if(this.jFileChooser1.APPROVE_OPTION==this.jFileChooser1.showSaveDialog(frame)){ this.filename=this.jFileChooser1.getSelectedFile().getPath(); return this.save(); }else{ return false; } } void undo(){ //undo } void cut(){ //cut try{ String str=this.text.getSelectedText(); if(str.length()!=0){ this.strtext=str; this.text.replaceRange("",this.text.getSelectionStart(),this.text.getSelectionEnd()); this.dirty=true; } }catch(Exception ex){ this.statubar.setText("剪切出错:"+ex.getMessage()); } } void copy(){ //copy try{ String str=this.text.getSelectedText(); if(str.length()!=0){ this.strtext=str; } }catch(Exception ex) { this.statubar.setText("复制出错!"+ex.getMessage()); } } void paste(){ //paste if(this.strtext.length()>0){ this.text.insert(this.strtext,this.text.getCaretPosition()); this.dirty=true; } } void delete(){ //delete this.text.replaceRange("",this.text.getSelectionStart(),this.text.getSelectionEnd()); this.dirty=true; } void nextFindStr(String str,int cur,int end){ if(cur>end){ this.statubar.setText("没有找到!"); } else{ int i=this.text.getText().indexOf(str); if(i>=0){ this.text.setSelectionStart(i); this.text.setSelectionEnd(i+str.length()); this.statubar.setText("已经在:"+i+" 位置找到!"); } else{ nextFindStr(str,++cur,end); } } } void upFindStr(String str,int cur){ if(cur<0){ this.statubar.setText("没有找到!"); }else{ int i=this.text.getText().lastIndexOf(str); if(i>=0){ this.text.setSelectionStart(i); this.text.setSelectionEnd(i+str.length()); this.statubar.setText("已经在:"+i+" 位置找到!"); }else{ upFindStr(str,--cur); } } } void replaceStr(String findStr,String replaceStr,int cur,int end){ if(cur>end){ this.statubar.setText("没有找到!"); }else{ int i=this.text.getText().indexOf(findStr); if(i>0){ this.text.setSelectionStart(i); this.text.setSelectionEnd(i+findStr.length()); this.text.replaceRange(replaceStr,this.text.getSelectionStart(),this.text.getSelectionEnd()); }else{ replaceStr(findStr,replaceStr,++cur,end); } } } /*------------------------------------------------ * * main * *----------------------------------------------- */ public static void main(String[] args){ Jsb jsb1=new Jsb(); } } /************************************************************ ///////////////////////// Event class /////////////////////// **************************************************************/ class Jsb_frame_closingAdapter extends java.awt.event.WindowAdapter{ Jsb adaptee; Jsb_frame_closingAdapter(Jsb adaptee){ this.adaptee=adaptee; } public void windowClosing(WindowListener e){ adaptee.frame_windowclose_windowClosing(e); } } /////////////////////////////////////////////////////////// class Jsb_text_mouseAdapter ex |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于用Java编写的记事本程序 - 编程入门网的所有评论