I'm using GWT Richtextbox, But this widget show values which are simple text or html formatted. Is there any way to show RTF data in a GWT-Richtext or GWT-htmlEditor widget? Or is there a widget in other GWT libraries which will do this?

Thanks

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

I don't think so. About year ago we wanted to develop rtf browser on client side and we failed. There is no GWT-Rtf libraries. You could try to find something written in javascript and then wrap it with JSNI, but I haven't seen such library as well. Someone told me that it might be possible with Activex, but we haven't even tried this method.

link|improve this answer
feedback

What are you trying to achieve? If you want to share documents with an RTF editor like, say, Microsoft Word, you should check to see if that editor can also work with HTML. I know that MS Word can edit HTML.

Alternatively, you might consider transposing RTF into HTML and back again on the server side. There are several Java libraries out there for doing that, and I believe that Flying Saucer is one of them.

link|improve this answer
I have RTF data on the database, I will show it in internet browser and user will edit it. So I convert RTF to HTML and use it. But When HTML is used, multiple spaces is ignored in EDITOR. So text format lost and user don't see which typed before saved. – ykartal Jan 18 '11 at 15:47
Perhaps it's just a matter of replacing normal spaces with non-breaking spaces (en.wikipedia.org/wiki/Non-breaking_space) in the editor. You could do that on the fly, intercepting key presses with a KeyDownHandler (google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/…) – David Jan 18 '11 at 20:33
Thanks but the problem is not this. No problem while user typing, problem is occured when the stored data get from DB and put to the editor. – ykartal Jan 19 '11 at 7:57
feedback

You could use RTFEditorKit in combination with HTMLEditorKit to convert between the two server-side or in an applet. This way you can use GWT's rich text editor and output or input RTF.

public static String getHtmlFromRtf(InputStream fi){
    Writer sOut = new StringWriter();
    DefaultStyledDocument doc = new DefaultStyledDocument();                  
    HTMLEditorKit htmlKit = new HTMLEditorKit();                  
    RTFEditorKit rtf = new RTFEditorKit();

    try
    {
        rtf.read( fi, doc, 0 );
        htmlKit.write(sOut, doc, 0, doc.getLength());
    }
    catch (IOException e)
    {
        e.printStackTrace();
    }
    catch (BadLocationException e)
    {
        e.printStackTrace();
    }
    return sOut.toString();
}
link|improve this answer
Thanks for your reply, but this methods problem is multiple spaces. GWT's richtext editor ignore multiple spaces. – ykartal Jan 19 '11 at 7:56
change them to   in the html. – LINEMAN78 Jan 19 '11 at 8:00
This is not easy as seen, replace method change <p style="sd"> to <p&nbsp;style="sd">, This is not acceptable. En ıntelligent replace method requires. – ykartal Jan 21 '11 at 11:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.