Ramesh Solanki
Ramesh Solanki

Reputation: 2926

How to render any file format(doc,ppt,xls) into printable format in android?

I am developing a andoid application which need to print some documents.Documents may be in different format like docx,ppt,xls. Now how can i render that other format in printable format in android ?

Thanks in advance !

Upvotes: 0

Views: 2476

Answers (2)

user370305
user370305

Reputation: 109237

For development, I think you should use some third party library or open office source for developing such kind of application.

Or you can also use apache's doc4j open source project for development. Some libraries are in .so format so you have to build it using NDK(JNI).

A demo example for reading .Doc file using apache.poi reading data from the .Doc file by using Apache POI api

Upvotes: 1

paulsm4
paulsm4

Reputation: 121669

You'll need one or more converters :)

Here are a couple of options:

This might be ideal for you:

Upvotes: 0

Related Questions