0% found this document useful (1 vote)
3K views

Abstract of Notepad Project in Java

This summarizes a Java notepad project that creates a basic text editor with common features like opening, saving, editing text, searching, and formatting text. The text editor allows users to open existing files or new blank files, save files in various formats, cut, copy, paste, undo edits, find and replace text, change fonts, wrap text, and view the time and date. The interface is designed to be easy to use similar to other basic text editors.

Uploaded by

Amit Baghel
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (1 vote)
3K views

Abstract of Notepad Project in Java

This summarizes a Java notepad project that creates a basic text editor with common features like opening, saving, editing text, searching, and formatting text. The text editor allows users to open existing files or new blank files, save files in various formats, cut, copy, paste, undo edits, find and replace text, change fonts, wrap text, and view the time and date. The interface is designed to be easy to use similar to other basic text editors.

Uploaded by

Amit Baghel
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Abstract of Notepad project in java

ABOUT THE PROJECT


This application is a text editor in JAVA. This text editor developed in a JAVA platform is
a replication of the word editors we all are familiar with and which we use quite often on
a daily basis. The only difference being that, this editor has been created using JAVA
for the front-end interface. The text edited in the editor is stored in the desired location.

This editor is a simple editor, very similar to that of a notepad editor that extends the
basic features to the end-user like:

 File open – User can either open the files already existing in the system or open
a new blank file.

 Files save - one can save the file in any desired format like-.txt, .doc, .java etc.
The file is stored in the location specified by the user.

 Cut-Copy-Paste – This editor also lets the user cut-copy-paste the edited text.

 Undo – The user is allowed to undo the text edited. This feature allows letter by
letter undo.

 Find text – The user can search through the entire document edited using this
feature to locate the specified word(s). This is a search feature of the editor. The
user can find if the specified word is repeated in the document again using the
‘Find Next’ feature.

 Font – This feature extends the user to change the font style of the edited text.

 Word wrap – Word wrap is used to wrap the text within the area which is visible
to the user. If the word wrap selection is off, then the horizontal scroll-bar
becomes active and the user will continue to write text in the same line until a
new line entry is specified using the ‘enter’ key on the keyboard. With word-wrap
feature, the user doesn’t have to explicitly key in the ‘enter’ button on the
keyboard, as the cursor identifies the last column of the editor (visible to the user)
and automatically points the cursor to the next line. In short, it wraps the text to
the user such that they are able to see all the text without having to scroll
horizontally.
 Time/Date – When this option is chosen from the edit menu, it prints the current
time/date on the editor. Therefore, the user can use this feature to keep a record
of the date and time on which the file was created or last edited.

Friendly easy to use interface – This notepad editor is easy to use, just like any other
text editor (MS Word, Notepad etc)

You might also like