0

Possible Duplicate:
Can anyone recommend a Java rich text editor?

i need something like CKeditor for Java SDK. Does a tool like this exist? Maybe Java has a class of it's own that I don't know about.

Community
  • 1
  • 1
Minutis
  • 1,193
  • 1
  • 17
  • 47

2 Answers2

2

JEditorPane may be the closest thing to what you are looking for. It renders HTML out of the box... but it would require some work to add WYSIWYG editing.

kylewm
  • 634
  • 6
  • 21
  • 2
    Do add the link to [How to use JEditorPane](http://docs.oracle.com/javase/tutorial/uiswing/components/editorpane.html), so that the seeker can get a proper idea. – nIcE cOw Feb 27 '12 at 08:10
2

The JEditorPane comes closest in the Java Standard API, though it's not an out-of-the-box solution. Here's a Demo that shows it in action. There may be third-party components built upon it that provide more functionality.

Michael Borgwardt
  • 342,105
  • 78
  • 482
  • 720