What methods are available for implementing a text editor in Java?

What methods are available for implementing a text editor in Java?

+2
java
Jun 26 '09 at 5:43
source share
5 answers

The JTextPane class would be a good start.

How to use editor tabs and Using text components and Text panoramas from Java tutorials would be interesting to take a look at examples and explanations.

+8
Jun 26 '09 at 5:46
source share

You can also take a look at JEdit , an open source java editor for ideas on exactly how to build an editor build.

+2
Jun 26 '09 at 6:38
source share
+1
Jun 26 '09 at 6:31
source share

You can also use Netbeans . Here's the link .

+1
Jun 26 '09 at 6:34
source share

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

+1
Jun 26 '09 at 11:03
source share



All Articles