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.
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.
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.