简体   繁体   中英

How to Convert PDF file to DOC file in Android App Programmatic

I m developing android that convert pdf file to word file without using internet can some one please help me on this. I have one solution but throw file format exception :

I have search many open source library but its cant help me

 Document pdfDocument = new Document(new File(selectedImagePath).getAbsolutePath());

   String path = new File(Environment.getExternalStorageDirectory().getAbsolutePath()) + "/Test.doc";
                pdfDocument.save(path, SaveFormat.Doc);

error :

class com.aspose.pdf.internal.ms.System.ArgumentException: Save a document to a doc format is not supported.

Try below code

static String pdftoText(String fileName) {
    PDFParser parser;
    String parsedText = null;
    PDFTextStripper pdfStripper = null;
    PDDocument pdDoc = null;
    COSDocument cosDoc = null;
    File file = new File(fileName);
    if (!file.isFile()) {
        System.err.println("File " + fileName + " does not exist.");
        return null;
    }
    try {
        parser = new PDFParser(new FileInputStream(file));
    } catch (IOException e) {
        System.err.println("Unable to open PDF Parser. " + e.getMessage());
        return null;
    }
    try {
        parser.parse();
        cosDoc = parser.getDocument();
        pdfStripper = new PDFTextStripper();
        pdDoc = new PDDocument(cosDoc);
        parsedText = pdfStripper.getText(pdDoc);
    } catch (Exception e) {
        System.err
                .println("An exception occured in parsing the PDF Document."
                        + e.getMessage());
    } finally {
        try {
            if (cosDoc != null)
                cosDoc.close();
            if (pdDoc != null)
                pdDoc.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    return parsedText;
}

From https://pdfbox.apache.org

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM