模块  java.desktop
软件包  java.awt

Class PrintJob

    • 构造方法详细信息

      • PrintJob

        public PrintJob()
    • 方法详细信息

      • getGraphics

        public abstract Graphics getGraphics()
        获取将绘制到下一页的Graphics对象。 在处理图形对象时,页面被发送到打印机。 此图形对象还将实现PrintGraphics接口。
        结果
        用于打印下一页的图形上下文
        另请参见:
        PrintGraphics
      • getPageDimension

        public abstract Dimension getPageDimension()
        返回页面的尺寸(以像素为单位)。 选择页面的分辨率使其与屏幕分辨率类似。
        结果
        页面尺寸
      • getPageResolution

        public abstract int getPageResolution()
        返回页面的分辨率,以每英寸像素为单位。 请注意,这不必与打印机的物理分辨率相对应。
        结果
        页面分辨率
      • lastPageFirst

        public abstract boolean lastPageFirst()
        如果将首先打印最后一页,则返回true。
        结果
        true如果最后一页将首先打印; 否则false
      • end

        public abstract void end()
        结束打印作业并进行任何必要的清理。
      • finalize

        @Deprecated(since="9")
        public void finalize()
        Deprecated.
        The finalize method has been deprecated. Subclasses that override finalize in order to perform cleanup should be modified to use alternative cleanup mechanisms and to remove the overriding finalize method. When overriding the finalize method, its implementation must explicitly ensure that super.finalize() is invoked as described in Object.finalize(). See the specification for Object.finalize() for further information about migration options.
        一旦不再引用此打印作业,就结束此打印作业。
        重写:
        finalizeObject
        另请参见:
        end()