Java HTML formatter?
I am looking for a java applet that will allow web page users to
format text in a form input field, which outputs html which I can
store in a database.
It also needs to be able to accept it's own output as input later, so
that users can edit existing html.
Any ideas?
Todd Corley - 05 Dec 2003 13:19 GMT
> Java HTML formatter?
>
[quoted text clipped - 5 lines]
>
> Any ideas?
JEditorPane in conjunction with a HTMLEditorKit is what you are lookin for.
You set and get HTML content from the editor and the display will be normal text.
Good Luck,
Todd