我有以下代码
private static Properties printProperties = new Properties();
public void print() {
PrintJob printJob = null;
try {
printJob = getToolkit().getPrintJob(this, "Draw app", printProperties);
} catch (Exception e) {
System.out.println(e.getMessage());
}
if (printJob == null)
return;
当我单击菜单中的打印按钮时,我得到一个NullpointerException
,它由PrintJob
类 API 由空框架问题调用,如果有人可以解释如何解决这个问题。感谢您的帮助。