Reputation:
What methods are available to implement a text editor in Java?
Upvotes: 2
Views: 1506
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
Reputation: 54725
I've successfully integrated EKit into a Java application, which is a fairly functional HTML text editor.
Upvotes: 1
Reputation: 7748
You could use Eclipse. See http://wiki.eclipse.org/FAQ How do I create my own editor?
Upvotes: 1
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