So öffnen Sie eine PDF-Datei in Java

So öffnen Sie eine PDF-Datei in Java

In diesem Artikel zeigen wir Ihnen zwei Möglichkeiten, eine PDF-Datei mit Java zu öffnen.

1. rundll32 - Windows-Plattformlösung

In Windows können Sie den Befehl "rundll32" verwenden, um eine PDF-Datei zu starten. Siehe Beispiel:

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 - Plattformübergreifende Lösung

Diese plattformübergreifende Awt Desktop-Lösung ist immerrecommended, da sie auf * nix-, Windows- und Mac-Plattformen funktioniert.

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();
      }

    }
}