i have tried the following code to extract text from pdf file on android.
it works when the file is in the file-system,but i want it to work ,when the file is in the sdcard
something similar to this:
OCPJP 6.0 93%
OCPJWCD 5.0 98%
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35249
7
posted
0
For starters, PDF files are binary, not text. That means you can't use Readers to work with them, you need to use Streams.
So the actual problem is how to get an InputStream from a file on the SD card? The Android Dev Guide has a page called "Data Storage" that talks about using SD cards.
Not just FileReader - all Readers and Writers. It's crucial that you understand the difference between text files and binary files.
please,tell me how to use pdfbox within the android
I have no idea whether PDFBox works on Android, but I pointed you to a resource that explains how to get an InputStream from a file on an SD card, and it seems that PDDocument.load can use an InputStream as well as a Reader. What else are you looking for?
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: How to extract text from a pdf file in android emulator