#CS2 Text Editor ReadME
This Text Editor is a simple and easy-to-use text editor designed for beginner programmers. This project is a java based text editor application that allows users to create, and edit text and java files. It also allows users to run java code.
The goal of this program was to provide an easy to use, non-complicated text editor to allows users to learn code without the unnecessary complications with most other IDE's.
This program is focused on offering helpful features such as search and replace, syntax highlight, code execution, and more.
- Simple and clean interface
- Easy-to-use buttons for all actions
- No setup required to compile and run code
- Create new files
- Open existing
.txtand.javafiles - Save files with overwrite protection
- Edit text in the editor
- Undo and redo changes
- Clear text quickly
- Search for words or phrases
- Highlight matches
- Search and replace text easily
- Compile Java code directly in the editor
- Run programs in a dedicated console
- View output and error messages clearly
- Highlights errors to help debugging
- Keeps text editor and compiler in one place (no switching programs)
The editor allows users to compile Java programs directly within the application.
To compile code:
- Write or open a
.javafile in the editor - Click the Compile Code button
- The editor will attempt to compile the program
- If successful, the program is ready to run
- If errors occur, they will be displayed in the editor
After compiling, the program can be executed within the editor.
To run code:
- Ensure the program has been successfully compiled
- Click the Run Code button
- The output will be displayed in the console area
- If the program has not been compiled, the editor will prompt the user to compile first.