如何在java/Android中使用itextpdf.jar文件读取现有的pdf文件

发布于 2024-11-25 08:27:14 字数 1169 浏览 8 评论 0原文

我想使用 Java/Android 从我的 SD 卡读取 pdf 文件。我将 itextpdf5.1.1.jar 文件导入到 Eclipse 中。如果我从现有文件创建一个新文件,我就能够读取文件,如下所示:

public void readPdfFile(String pFilename){

    try{
        Document document = null;
        document = new Document();
    PdfWriter writer = PdfWriter.getInstance(document,
            new FileOutputStream(OUTPUTFILE));
    document.open();
    PdfReader reader = new PdfReader(pFilename);
    int n = reader.getNumberOfPages();
    PdfImportedPage page;
    // Go through all pages
    for (int i = 1; i <= n; i++) {
        // Only page number 2 will be included
        if (i == 1) {
            page = writer.getImportedPage(reader, i);
            Image instance = Image.getInstance(page);
            document.add(instance);
        }
    }
    }

    catch (DocumentException e) {
        // TODO: handle exception
        System.out.println("Doc Exception"+ e);
    }
    catch (IOException io) {
        // TODO: handle exception
        System.out.println("IO Exception"+ io);
    }
}

但我想读取该文件而不在我的 SD 卡中创建新的 pdf 文件。我该怎么做?

请指导我如何在 Android 中创建一个 pdf 阅读器应用程序,该应用程序可以读取 pdf 文件,并且还允许您输入要跳转到的页码。

I want to read a pdf file using Java/Android from my SD card. I imported the itextpdf5.1.1.jar file in to Eclipse. I am able to read a file if I create a new file from an existing one, like this:

public void readPdfFile(String pFilename){

    try{
        Document document = null;
        document = new Document();
    PdfWriter writer = PdfWriter.getInstance(document,
            new FileOutputStream(OUTPUTFILE));
    document.open();
    PdfReader reader = new PdfReader(pFilename);
    int n = reader.getNumberOfPages();
    PdfImportedPage page;
    // Go through all pages
    for (int i = 1; i <= n; i++) {
        // Only page number 2 will be included
        if (i == 1) {
            page = writer.getImportedPage(reader, i);
            Image instance = Image.getInstance(page);
            document.add(instance);
        }
    }
    }

    catch (DocumentException e) {
        // TODO: handle exception
        System.out.println("Doc Exception"+ e);
    }
    catch (IOException io) {
        // TODO: handle exception
        System.out.println("IO Exception"+ io);
    }
}

But I want to read the file without creating a new pdf file in my sd card. How can I do this?

Please guide me how to create a pdf reader application in Android that reads the pdf file and also allows you to enter a page number to jump to.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深者入戏 2024-12-02 08:27:14

替换现有的 PDF 是不可能的。我们可以在 PDF 中写入或操作任何内容,但无法用原始文件替换。使用 iText 时,我们可以进行更改并将其保存在新文件中,而不是原始文件中,此信息可在 iText 官方网站上找到。

It is impossible to replace an existing PDF. We can able to write or manipulate anything in our PDF but it could not be replaced with the original. While using iText we can make change and save it in a new file and not in a original file, this information is available in the iText official website.

深海少女心 2024-12-02 08:27:14

您可以使用 awt 工具(例如 java 中的 jPanel)和 iText 来读取 pdf 文件。

Android 中有一个 pdf 查看器,用于阅读或查看 pdf 文件。

You can use awt tools like jPanel in java with iText to read a pdf file.

In Android there is a pdf viewer for reading or viewing pdf files.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文