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 w w w . j a va 2s. c om*/
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();
}
}
}
Home »
Java Tutorial »
java.awt »
Java Tutorial »
java.awt »