Skip to content Skip to sidebar Skip to footer

Java WYSIWYG HTML Editor

I'm working on a project and need a simple, free, Java HTML WYSIWYG editor. Can anyone point me in the right direction?. It only has a small space to fit into, so something fairly

Solution 1:

Ekit seems fairly light (160Ko in one jar, source and jar here)

http://www.hexidec.com/images/ekit.png


Solution 2:

I was searching for the same stuff. Have a look at these two solutions:

I've found another, very nice solution: Use a JFXPanel to incorporate the HTML WYSIWYG editor component that's included in the latest versions of JavaFX. This is the way i'll go.


Solution 3:

If you need a good WYSIWYG HTML editor then I recommended JWebEngine. It is the only one that I know that pass the ACID1 browser test and the mail-acid test. The most other Java HTML editors based on the javax.swing.text.html.HTMLDocument and have all the same bugs. The support of CSS is very poor in the HTMLDocument. JWebEngine has a very good support for viewing HTML with CSS. But it is also compatible JEditorPane or JTextPane and you can use it together with third party tools like the spell checker JOrtho.


Solution 4:

Have a look at Metaphase Editor. It's a WYSWIWYG HTML Editor component for Java and is licensed under LGPL. The binaries and sources are available at Project Kenai.


Solution 5:

If it the editor should run in a browser then there is nothing to do with Java and you can use any of these:

but if you need to embed the HTML editor into a desktop app then you probably need to find the one you like and try which fits best.


Post a Comment for "Java WYSIWYG HTML Editor"