Comment ouvrir un fichier PDF en Java

Comment ouvrir un fichier PDF en Java

Dans cet article, nous vous montrons deux façons d'ouvrir un fichier PDF avec Java.

1. rundll32 - Solution de plate-forme Windows

Sous Windows, vous pouvez utiliser la commande «rundll32» pour lancer un fichier PDF, voir exemple:

package com.example.jdbc;

import java.io.File;

//Windows solution to view a PDF file
public class WindowsPlatformAppPDF {

    public static void main(String[] args) {

      try {

        if ((new File("c:\\Java-Interview.pdf")).exists()) {

            Process p = Runtime
               .getRuntime()
               .exec("rundll32 url.dll,FileProtocolHandler c:\\Java-Interview.pdf");
            p.waitFor();

        } else {

            System.out.println("File is not exists");

        }

        System.out.println("Done");

      } catch (Exception ex) {
        ex.printStackTrace();
      }

    }
}

2. Awt Desktop - Solution multiplateforme

Cette solution multiplateforme Awt Desktop est toujoursrecommended, car elle fonctionne sur les plates-formes * nix, Windows et Mac.

package com.example.io;

import java.awt.Desktop;
import java.io.File;

//Cross platform solution to view a PDF file
public class AnyPlatformAppPDF {

    public static void main(String[] args) {

      try {

        File pdfFile = new File("c:\\Java-Interview.pdf");
        if (pdfFile.exists()) {

            if (Desktop.isDesktopSupported()) {
                Desktop.getDesktop().open(pdfFile);
            } else {
                System.out.println("Awt Desktop is not supported!");
            }

        } else {
            System.out.println("File is not exists!");
        }

        System.out.println("Done");

      } catch (Exception ex) {
        ex.printStackTrace();
      }

    }
}