Java Swing Tutorial - Java Desktop.print(File file)








Syntax

Desktop.print(File file) has the following syntax.

public void print(File file)  throws IOException

Example

In the following code shows how to use Desktop.print(File file) method.

/*from www.ja v a 2 s.c o  m*/

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

public class Main {
  public static void main(String[] a) {
    try {
      Desktop desktop = null;
      if (Desktop.isDesktopSupported()) {
        desktop = Desktop.getDesktop();
      }

       desktop.print(new File("c:\\a.txt"));
    } catch (IOException ioe) {
      ioe.printStackTrace();
    }

  }
}