Raji
Raji

Reputation:

What methods are available to implement a text editor in Java?

What methods are available to implement a text editor in Java?

Upvotes: 2

Views: 1506

Answers (5)

Rad
Rad

Reputation: 8389

You can also have a look at JEdit, a open source java editor for ideas on how exactly to go about building an editor.

Upvotes: 2

Adamski
Adamski

Reputation: 54725

I've successfully integrated EKit into a Java application, which is a fairly functional HTML text editor.

Upvotes: 1

stanigator
stanigator

Reputation: 10944

You could also use Netbeans. Here is a link.

Upvotes: 1

coobird
coobird

Reputation: 161042

The JTextPane class would be a good start.

The How to Use Editor Panes and Using Text Components and Text Panes sections from The Java Tutorials would be a nice to place to take a look at examples and explanation.

Upvotes: 8

Related Questions