java文本编辑软件代码

2024-09-01 14:08

本文主要是介绍java文本编辑软件代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

这是小编在csdn第一篇博文,闲话不多说,直接上代码:

 

该编辑器能够类似记事本,能实现文件的打开,保存,文本的复制,粘贴,查找,替换等功能,效果图如下:

 

源码如下:

package A;import java.awt.BorderLayout;
import java.awt.CheckboxMenuItem;
import java.awt.Container;
import java.awt.FileDialog;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.InputEvent;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JCheckBoxMenuItem;
import javax.swing.JDialog;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.KeyStroke;public class ShiYan1 extends JFrame{JMenuBar mb; JMenu mfile, mcompile,mhelp;JMenuItem mnew,mopen,mexit,msave,msaveas,mcopy,mstick,mfind,mreplase,mabout;Container c;JLabel lb;JTextArea jta;JScrollPane jsp;FileDialog openFile;FileDialog resaveFile;  JFileChooser jfc;boolean issave=false; String theFileName=null; String thePath=null; private String selectText="";private FileDialog fd=new FileDialog(this);private void init(){c=this.getContentPane();c.setLayout(new BorderLayout());mb=new JMenuBar();mfile=new JMenu("文件");mcompile=new JMenu("编辑");mhelp=new JMenu("帮助");mb.add(mfile);mb.add(mcompile);mb.add(mhelp);mnew=new JMenuItem("新建");mopen=new JMenuItem("打开");msave=new JMenuItem(" 保存");msaveas=new JMenuItem(" 另保存");mexit=new JMenuItem("退出");mfile.add(mnew);mfile.add(mopen);mfile.add(msave);mfile.add(msaveas);        mfile.add(mexit);mcopy=new JMenuItem("复制");mstick=new JMenuItem("粘贴");mfind=new JMenuItem("查找");mreplase=new JMenuItem("替换");mcompile.add(mcopy);mcompile.add(mstick);mcompile.add(mfind);mcompile.add(mreplase);mabout=new JMenuItem("关于");mhelp.add(mabout);jta=new JTextArea();jsp=new JScrollPane(jta);c.add(mb, BorderLayout.NORTH);c.add(jsp,BorderLayout.CENTER);//新建选项的监听器mnew.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e){mnew();}});//open的监听器mopen.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e){ShiYan1 sy=new ShiYan1("文本");openFile=new FileDialog(sy,"打开",FileDialog.LOAD);   openFile.setVisible(true);  String path=openFile.getDirectory();  //获取路径String fileName=openFile.getFile();    //获取文件名theFileName=fileName;thePath=path;if(path!=null&&fileName!=null){File file=new File(path,fileName);try {BufferedReader br=new BufferedReader(new FileReader(file));jta.setText("");String lineText=br.readLine();while(lineText!=null){jta.append(lineText+"\n");lineText=br.readLine();}setTitle(fileName);br.close();issave=true;} catch (FileNotFoundException e1) {JOptionPane.showMessageDialog(null, "文件无法打开", "提示", JOptionPane.INFORMATION_MESSAGE);}catch (IOException e1) {JOptionPane.showMessageDialog(null, "文件无法打开", "提示", JOptionPane.INFORMATION_MESSAGE);}}}});msave.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e){if(issave==false){ShiYan1 sy=new ShiYan1("文本");resaveFile=new FileDialog(sy,"打开",FileDialog.SAVE);   resaveFile.setVisible(true);  String path=resaveFile.getDirectory();  //获取路径String fileName=resaveFile.getFile();    //获取文件名theFileName=fileName;thePath=path;if(path!=null&&fileName!=null){File file=new File(path,fileName);BufferedWriter br;try {br = new BufferedWriter(new FileWriter(file));String text=jta.getText();br.write(text);br.close();issave=true;} catch (IOException e1) {JOptionPane.showMessageDialog(null, "保存失败", "提示", JOptionPane.INFORMATION_MESSAGE);}		}}else{File file=new File(thePath,theFileName);BufferedWriter br;try {br = new BufferedWriter(new FileWriter(file));String text=jta.getText();br.write(text);br.close();} catch (IOException e1) {JOptionPane.showMessageDialog(null, "保存失败", "提示", JOptionPane.INFORMATION_MESSAGE);}		}	}});//另存为的监听器msaveas.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e){resave();}});//exit选项的监听器        mexit.addActionListener( new ActionListener(){ ///退出程序public void actionPerformed(ActionEvent e){System.exit(0);}});mcopy.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent event){Object selectText=jta.getSelectedText();}});mfind.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent event){JPanel swapPanel=new JPanel();JLabel seekLabel=new JLabel("要查找的内容");JTextField inputText=new JTextField(20);swapPanel.add(seekLabel);swapPanel.add(inputText);JOptionPane.showMessageDialog(null ,swapPanel);String text =jta.getText();int fromIndex=jta.getCaretPosition();int lastfromindex=text.indexOf(inputText.getText(),fromIndex);jta.setCaretPosition(lastfromindex);jta.moveCaretPosition(lastfromindex+inputText.getText().length());}});mreplase.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent event){JPanel swapPanel=new JPanel();JLabel lookupLabel=new JLabel("要替换的内容");JTextField inputText=new JTextField(10);JLabel swapLabel=new JLabel("替换为:");JTextField changetoText=new JTextField(10);swapPanel.add(lookupLabel);swapPanel.add(inputText);swapPanel.add(swapLabel);swapPanel.add(changetoText);JOptionPane.showMessageDialog(null, swapPanel);String text=jta.getText();String changeText=text.replaceFirst(inputText.getText(),changetoText.getText());jta.setText(changeText);}});mstick.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent event)	{int position =jta.getCaretPosition();jta.insert(selectText, position);}});		mabout.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e){JOptionPane.showMessageDialog(null,"\n作者:禚先林"+"\n\n"+"此文本由我编辑,如有疑问请致电:183661851**", getTitle(),JOptionPane.INFORMATION_MESSAGE);}});}public void mnew(){ShiYan1 sy=new ShiYan1("文本");}public void resave(){ShiYan1 sy=new ShiYan1("文本");resaveFile=new FileDialog(sy,"打开",FileDialog.SAVE);   resaveFile.setVisible(true);  String path=resaveFile.getDirectory();  //获取路径String fileName=resaveFile.getFile();    //获取文件名theFileName=fileName;thePath=path;if(path!=null&&fileName!=null){File file=new File(path,fileName);BufferedWriter br;try {br = new BufferedWriter(new FileWriter(file));String text=jta.getText();br.write(text);br.close();issave=true;} catch (IOException e1) {JOptionPane.showMessageDialog(null, "保存失败", "提示", JOptionPane.INFORMATION_MESSAGE);}		}}/*public void save(){File file=new File(thePath,theFileName);BufferedWriter br;try {br = new BufferedWriter(new FileWriter(file));String text=jta.getText();br.write(text);br.close();} catch (IOException e1) {JOptionPane.showMessageDialog(null, "保存失败", "提示", JOptionPane.INFORMATION_MESSAGE);}		}*/public  ShiYan1(String title){super(title);init();}public static void main(String []args){ShiYan1 sy=new ShiYan1("文本软件");sy.setSize(500,350);sy.setVisible(true);}
}


 

这篇关于java文本编辑软件代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1127149

相关文章

Java实现Excel与HTML互转

《Java实现Excel与HTML互转》Excel是一种电子表格格式,而HTM则是一种用于创建网页的标记语言,虽然两者在用途上存在差异,但有时我们需要将数据从一种格式转换为另一种格式,下面我们就来看看... Excel是一种电子表格格式,广泛用于数据处理和分析,而HTM则是一种用于创建网页的标记语言。虽然两

java图像识别工具类(ImageRecognitionUtils)使用实例详解

《java图像识别工具类(ImageRecognitionUtils)使用实例详解》:本文主要介绍如何在Java中使用OpenCV进行图像识别,包括图像加载、预处理、分类、人脸检测和特征提取等步骤... 目录前言1. 图像识别的背景与作用2. 设计目标3. 项目依赖4. 设计与实现 ImageRecogni

Java中Springboot集成Kafka实现消息发送和接收功能

《Java中Springboot集成Kafka实现消息发送和接收功能》Kafka是一个高吞吐量的分布式发布-订阅消息系统,主要用于处理大规模数据流,它由生产者、消费者、主题、分区和代理等组件构成,Ka... 目录一、Kafka 简介二、Kafka 功能三、POM依赖四、配置文件五、生产者六、消费者一、Kaf

Java访问修饰符public、private、protected及默认访问权限详解

《Java访问修饰符public、private、protected及默认访问权限详解》:本文主要介绍Java访问修饰符public、private、protected及默认访问权限的相关资料,每... 目录前言1. public 访问修饰符特点:示例:适用场景:2. private 访问修饰符特点:示例:

详解Java如何向http/https接口发出请求

《详解Java如何向http/https接口发出请求》这篇文章主要为大家详细介绍了Java如何实现向http/https接口发出请求,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 用Java发送web请求所用到的包都在java.net下,在具体使用时可以用如下代码,你可以把它封装成一

SpringBoot使用Apache Tika检测敏感信息

《SpringBoot使用ApacheTika检测敏感信息》ApacheTika是一个功能强大的内容分析工具,它能够从多种文件格式中提取文本、元数据以及其他结构化信息,下面我们来看看如何使用Ap... 目录Tika 主要特性1. 多格式支持2. 自动文件类型检测3. 文本和元数据提取4. 支持 OCR(光学

Java内存泄漏问题的排查、优化与最佳实践

《Java内存泄漏问题的排查、优化与最佳实践》在Java开发中,内存泄漏是一个常见且令人头疼的问题,内存泄漏指的是程序在运行过程中,已经不再使用的对象没有被及时释放,从而导致内存占用不断增加,最终... 目录引言1. 什么是内存泄漏?常见的内存泄漏情况2. 如何排查 Java 中的内存泄漏?2.1 使用 J

JAVA系统中Spring Boot应用程序的配置文件application.yml使用详解

《JAVA系统中SpringBoot应用程序的配置文件application.yml使用详解》:本文主要介绍JAVA系统中SpringBoot应用程序的配置文件application.yml的... 目录文件路径文件内容解释1. Server 配置2. Spring 配置3. Logging 配置4. Ma

Java 字符数组转字符串的常用方法

《Java字符数组转字符串的常用方法》文章总结了在Java中将字符数组转换为字符串的几种常用方法,包括使用String构造函数、String.valueOf()方法、StringBuilder以及A... 目录1. 使用String构造函数1.1 基本转换方法1.2 注意事项2. 使用String.valu

python实现pdf转word和excel的示例代码

《python实现pdf转word和excel的示例代码》本文主要介绍了python实现pdf转word和excel的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、引言二、python编程1,PDF转Word2,PDF转Excel三、前端页面效果展示总结一