所有类
javax.print
类 StreamPrintService
java.lang.Object
javax.print.StreamPrintService
-
所有已实现的接口:
-
PrintService
-
public abstract class StreamPrintService
- extends Object
- implements PrintService
此类扩展了 PrintService
并表示这样一种 PrintService,即以不同的格式向客户端提供的输出流打印数据。这主要用于输出格式是一种适合于查看或存档的文档类型的服务。必须以 mime 类型的形式声明该输出格式。这等效于其中表示形式类始终是 "java.io.OutputStream" 的某种输出 doc flavor。可从 StreamPrintServiceFactory
实例中获得 StreamPrintService
类的实例。
注意,StreamPrintService
与 PrintService
不同,PrintService 支持 Destination
属性。StreamPrintService
始终请求一个输出流,而 PrintService
可选地接受一个 Destination
。StreamPrintService
没有针对其格式化输出的默认目标。另外,StreamPrintService
应该以在其他上下文中有用的格式生成输出。不应期望 StreamPrintService 支持 Destination 属性。
从类 java.lang.Object 继承的方法 |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
从接口 javax.print.PrintService 继承的方法 |
addPrintServiceAttributeListener, createPrintJob, equals, getAttribute, getAttributes, getDefaultAttributeValue, getName, getServiceUIFactory, getSupportedAttributeCategories, getSupportedAttributeValues, getSupportedDocFlavors, getUnsupportedAttributes, hashCode, isAttributeCategorySupported, isAttributeValueSupported, isDocFlavorSupported, removePrintServiceAttributeListener |
StreamPrintService
protected StreamPrintService(OutputStream out)
-
构造一个 StreamPrintService 对象。
-
参数:
-
out
- 流,格式化打印数据送入该流。
getOutputStream
public OutputStream getOutputStream()
-
获得输出流。
-
-
-
返回:
-
此服务将格式化打印数据所发送到的流。
getOutputFormat
public abstract String getOutputFormat()
-
返回此 PrintService 所发出的文档格式。必须是 mime 类型格式,与 DocFlavor 的 mime 类型部分兼容
-
-
-
返回:
-
标识输出格式的 mime 类型。
-
另请参见:
-
DocFlavor
dispose
public void dispose()
-
处置此
StreamPrintService
。如果无法重用某个流服务,则必须处置它以指示此情况。通常客户端将调用此方法。某些服务(可写入无法有意义地追加的数据)也可以处置该流。这不会关闭该流。它只是将其标记为此服务无法再使用它而已。
-
-
isDisposed
public boolean isDisposed()
-
返回一个
boolean
值,指示是否已处置此 StreamPrintService
。如果已处置此对象,则返回 true。服务和客户端应用程序使用此方法来识别那些没有应该再写入的数据的流。
-
-
-
返回:
-
如果已处置此
StreamPrintService
,则返回 true
所有类