Skip to content Skip to sidebar Skip to footer

Import, Parse, Edit And Save Rtf Documents With Formatting Preserved In Ipad And Droid Apps

My goal... I've .rtf template files at my web server. I need to import those files into my iPad and Droid app. I need to show the contents of imported template file with exact for

Solution 1:

Here is the solution! enter image description here

Neither iOS nor Android has support for editing and saving DOC/RTF files. But both support HTML. In this case, we can use an HTML editor on iPad and Droid which will definitely appear in a web view (It's up to the developer to give it a native app look and its possible with HTML5!!).

So here are the steps...

  • Mobile app requests the contents of a DOC/RTF file from the web server app.
  • Web app converts DOC/RTF into HTML and sends HTML contents to mobile app.
  • Mobile app displays HTML contents in its HTML based RTF editor.
  • User makes changes to the document in the editor.
  • Mobile app sends edited contents in HTML format back to the web server app.
  • Web server app converts HTML content into DOC/RTF format and saves the file.

Solution 2:

Finally solved it after months oh hair tearing.

OfficeSuite Pro, the paid version

It's the only thing I've found that even comes close to working. Expensive as apps go, which is cheap as os applications go.

Allows flawless syncing of Scrivener via sync to dropbox, which was my goal.

Solution 3:

Is it possible to import, parse, edit and save RTF documents with all formatting preserved?

There is nothing built into Android to support this.

There are third-party apps you could link to for RTF editing -- it appears that OfficeSuite Pro 5 offers this, for example.

If not possible, what is the best alternative (other formats like doc, pdf etc) to do this?

There are plenty of third-party editor apps for, say, DOC/DOCX, that you could link to as well.

Post a Comment for "Import, Parse, Edit And Save Rtf Documents With Formatting Preserved In Ipad And Droid Apps"