- java.lang.Object
-
- javax.print.DocFlavor
-
- All Implemented Interfaces:
Serializable
,Cloneable
- Direct Known Subclasses:
DocFlavor.BYTE_ARRAY
,DocFlavor.CHAR_ARRAY
,DocFlavor.INPUT_STREAM
,DocFlavor.READER
,DocFlavor.SERVICE_FORMATTED
,DocFlavor.STRING
,DocFlavor.URL
public class DocFlavor extends Object implements Serializable, Cloneable
ClassDocFlavor
encapsulates an object that specifies the format in which print data is supplied to aDocPrintJob
. "Doc" is a short, easy-to-pronounce term that means "a piece of print data." The print data format, or "doc flavor", consists of two things:- MIME type. This is a Multipurpose Internet Mail Extensions (MIME) media type (as defined in RFC 2045 and RFC 2046) that specifies how the print data is to be interpreted. The charset of text data should be the IANA MIME-preferred name, or its canonical name if no preferred name is specified. Additionally a few historical names supported by earlier versions of the Java platform may be recognized. See character encodings for more information on the character encodings supported on the Java platform.
- Representation class name. This specifies the fully-qualified
name of the class of the object from which the actual print data comes, as
returned by the
Class.getName()
method. (Thus the class name forbyte[]
is"[B"
, forchar[]
it is"[C"
.)
DocPrintJob
obtains its print data by means of interfaceDoc
. ADoc
object lets theDocPrintJob
determine the doc flavor the client can supply. ADoc
object also lets theDocPrintJob
obtain an instance of the doc flavor's representation class, from which theDocPrintJob
then obtains the actual print data.
Client Formatted Print Data
There are two broad categories of print data, client formatted print data and service formatted print data.For client formatted print data, the client determines or knows the print data format. For example the client may have a JPEG encoded image, a
URL
for HTML code, or a disk file containing plain text in some encoding, possibly obtained from an external source, and requires a way to describe the data format to the print service.The doc flavor's representation class is a conduit for the JPS
DocPrintJob
to obtain a sequence of characters or bytes from the client. The doc flavor's MIME type is one of the standard media types telling how to interpret the sequence of characters or bytes. For a list of standard media types, see the Internet Assigned Numbers Authority's (IANA's) Media Types Directory . InterfaceDoc
provides two utility operations,getReaderForText
andgetStreamForBytes()
, to help aDoc
object's client extract client formatted print data.For client formatted print data, the print data representation class is typically one of the following (although other representation classes are permitted):
- Character array (
char[]
) -- The print data consists of the Unicode characters in the array. String
-- The print data consists of the Unicode characters in the string.- Character stream (
java.io.Reader
) -- The print data consists of the Unicode characters read from the stream up to the end-of-stream. - Byte array (
byte[]
) -- The print data consists of the bytes in the array. The bytes are encoded in the character set specified by the doc flavor's MIME type. If the MIME type does not specify a character set, the default character set is US-ASCII. - Byte stream (
java.io.InputStream
) -- The print data consists of the bytes read from the stream up to the end-of-stream. The bytes are encoded in the character set specified by the doc flavor's MIME type. If the MIME type does not specify a character set, the default character set is US-ASCII. - Uniform Resource Locator (
URL
) -- The print data consists of the bytes read from the URL location. The bytes are encoded in the character set specified by the doc flavor's MIME type. If the MIME type does not specify a character set, the default character set is US-ASCII. When the representation class is aURL
, the print service itself accesses and downloads the document directly from itsURL
address, without involving the client. The service may be some form of network print service which is executing in a different environment. This means you should not use aURL
print data flavor to print a document at a restrictedURL
that the client can see but the printer cannot see. This also means you should not use aURL
print data flavor to print a document stored in a local file that is not available at aURL
accessible independently of the client. For example, a file that is not served up by an HTTP server or FTP server. To print such documents, let the client open an input stream on theURL
or file and use an input stream data flavor.
Default and Platform Encodings
For byte print data where the doc flavor's MIME type does not include acharset
parameter, the Java Print Service instance assumes the US-ASCII character set by default. This is in accordance with RFC 2046, which says the default character set is US-ASCII. Note that US-ASCII is a subset of UTF-8, so in the future this may be widened if a future RFC endorses UTF-8 as the default in a compatible manner.Also note that this is different than the behaviour of the Java runtime when interpreting a stream of bytes as text data. That assumes the default encoding for the user's locale. Thus, when spooling a file in local encoding to a Java Print Service it is important to correctly specify the encoding. Developers working in the English locales should be particularly conscious of this, as their platform encoding corresponds to the default mime charset. By this coincidence that particular case may work without specifying the encoding of platform data.
Every instance of the Java virtual machine has a default character encoding determined during virtual-machine startup and typically depends upon the locale and charset being used by the underlying operating system. In a distributed environment there is no guarantee that two VM share the same default encoding. Thus clients which want to stream platform encoded text data from the host platform to a Java Print Service instance must explicitly declare the charset and not rely on defaults.
The preferred form is the official IANA primary name for an encoding. Applications which stream text data should always specify the charset in the mime type, which necessitates obtaining the encoding of the host platform for data (eg files) stored in that platform's encoding. A
CharSet
which corresponds to this and is suitable for use in a mime-type for aDocFlavor
can be obtained fromDocFlavor.hostEncoding
This may not always be the primary IANA name but is guaranteed to be understood by this VM. For common flavors, the pre-defined *HOSTDocFlavors
may be used.See character encodings for more information on the character encodings supported on the Java platform.
Recommended DocFlavors
The Java Print Service API does not define any mandatorily supportedDocFlavors
. However, here are some examples of MIME types that a Java Print Service instance might support for client formatted print data. Nested classes inside classDocFlavor
declare predefined static constantDocFlavor
objects for these example doc flavors; classDocFlavor
's constructor can be used to create an arbitrary doc flavor.- Preformatted text
MIME-Types and their descriptions MIME-Type Description "text/plain"
Plain text in the default character set (US-ASCII) "text/plain; charset=xxx"
Plain text in character set xxx "text/html"
HyperText Markup Language in the default character set (US-ASCII) "text/html; charset=xxx"
HyperText Markup Language in character set xxx - Preformatted page description language (PDL) documents
MIME-Types and their descriptions MIME-Type Description "application/pdf"
Portable Document Format document "application/postscript"
PostScript document "application/vnd.hp-PCL"
Printer Control Language document InputStream
,URL
). - Preformatted images
MIME-Types and their descriptions MIME-Type Description "image/gif"
Graphics Interchange Format image "image/jpeg"
Joint Photographic Experts Group image "image/png"
Portable Network Graphics image InputStream
,URL
). - Preformatted autosense print data
MIME-Types and their descriptions MIME-Type Description "application/octet-stream"
The print data format is unspecified (just an octet stream) InputStream
,URL
).
Service Formatted Print Data
For service formatted print data, the Java Print Service instance determines the print data format. The doc flavor's representation class denotes an interface whose methods theDocPrintJob
invokes to determine the content to be printed -- such as a renderable image interface or a Java printable interface. The doc flavor's MIME type is the special value"application/x-java-jvm-local-objectref"
indicating the client will supply a reference to a Java object that implements the interface named as the representation class. This MIME type is just a placeholder; what's important is the print data representation class.For service formatted print data, the print data representation class is typically one of the following (although other representation classes are permitted). Nested classes inside class
DocFlavor
declare predefined static constantDocFlavor
objects for these example doc flavors; classDocFlavor
's constructor can be used to create an arbitrary doc flavor.- Renderable image object -- The client supplies an object that
implements interface
RenderableImage
. The printer calls methods in that interface to obtain the image to be printed. - Printable object -- The client supplies an object that implements
interface
Printable
. The printer calls methods in that interface to obtain the pages to be printed, one by one. For each page, the printer supplies a graphics context, and whatever the client draws in that graphics context gets printed. - Pageable object -- The client supplies an object that implements
interface
Pageable
. The printer calls methods in that interface to obtain the pages to be printed, one by one. For each page, the printer supplies a graphics context, and whatever the client draws in that graphics context gets printed.
Pre-defined Doc Flavors
A Java Print Service instance is not required to support the following print data formats and print data representation classes. In fact, a developer using this class should never assume that a particular print service supports the document types corresponding to these pre-defined doc flavors. Always query the print service to determine what doc flavors it supports. However, developers who have print services that support these doc flavors are encouraged to refer to the predefined singleton instances created here.- Plain text print data provided through a byte stream. Specifically, the
following doc flavors are recommended to be supported:
·("text/plain", "java.io.InputStream")
·("text/plain; charset=us-ascii", "java.io.InputStream")
·("text/plain; charset=utf-8", "java.io.InputStream")
- Renderable image objects. Specifically, the following doc flavor is
recommended to be supported:
·("application/x-java-jvm-local-objectref", "java.awt.image.renderable.RenderableImage")
Support for the above doc flavors is desirable so a printing client can rely on being able to print on any JPS printer, regardless of which doc flavors the printer supports. If the printer doesn't support the client's preferred doc flavor, the client can at least print plain text, or the client can convert its data to a renderable image and print the image.
Furthermore, every Java Print Service instance must fulfill these requirements for processing plain text print data:
- The character pair carriage return-line feed (CR-LF) means "go to column 1 of the next line."
- A carriage return (CR) character standing by itself means "go to column 1 of the next line."
- A line feed (LF) character standing by itself means "go to column 1 of the next line."
Design Rationale
ClassDocFlavor
in packagejavax.print
is similar to classDataFlavor
. ClassDataFlavor
is not used in the Java Print Service (JPS) API for three reasons which are all rooted in allowing the JPS API to be shared by other print services APIs which may need to run on Java profiles which do not include all of the Java Platform, Standard Edition.- The JPS API is designed to be used in Java profiles which do not support AWT.
- The implementation of class
java.awt.datatransfer.DataFlavor
does not guarantee that equivalent data flavors will have the same serialized representation.DocFlavor
does, and can be used in services which need this. - The implementation of class
java.awt.datatransfer.DataFlavor
includes a human presentable name as part of the serialized representation. This is not appropriate as part of a service matching constraint.
DocFlavor
's serialized representation uses the following canonical form of a MIME type string. Thus, two doc flavors with MIME types that are not identical but that are equivalent (that have the same canonical form) may be considered equal.- The media type, media subtype, and parameters are retained, but all comments and whitespace characters are discarded.
- The media type, media subtype, and parameter names are converted to lowercase.
- The parameter values retain their original case, except a charset parameter value for a text media type is converted to lowercase.
- Quote characters surrounding parameter values are removed.
- Quoting backslash characters inside parameter values are removed.
- The parameters are arranged in ascending order of parameter name.
DocFlavor
's serialized representation also contains the fully-qualified class name of the representation class (aString
object), rather than the representation class itself (aClass
object). This allows a client to examine the doc flavors a Java Print Service instance supports without having to load the representation classes, which may be problematic for limited-resource clients.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DocFlavor.BYTE_ARRAY
ClassDocFlavor.BYTE_ARRAY
provides predefined static constantDocFlavor
objects for example doc flavors using a byte array (byte[]
) as the print data representation class.static class
DocFlavor.CHAR_ARRAY
ClassDocFlavor.CHAR_ARRAY
provides predefined static constantDocFlavor
objects for example doc flavors using a character array (char[]
) as the print data representation class.static class
DocFlavor.INPUT_STREAM
ClassDocFlavor.INPUT_STREAM
provides predefined static constantDocFlavor
objects for example doc flavors using a byte stream (java.io.InputStream
) as the print data representation class.static class
DocFlavor.READER
ClassDocFlavor.READER
provides predefined static constantDocFlavor
objects for example doc flavors using a character stream (java.io.Reader
) as the print data representation class.static class
DocFlavor.SERVICE_FORMATTED
ClassDocFlavor.SERVICE_FORMATTED
provides predefined static constantDocFlavor
objects for example doc flavors for service formatted print data.static class
DocFlavor.STRING
ClassDocFlavor.STRING
provides predefined static constantDocFlavor
objects for example doc flavors using a string (java.lang.String
) as the print data representation class.static class
DocFlavor.URL
ClassDocFlavor.URL
provides predefined static constantDocFlavor
objects.
-
Field Summary
Fields Modifier and Type Field Description static String
hostEncoding
A string representing the host operating system encoding.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Determines if this doc flavor object is equal to the given object.String
getMediaSubtype()
Returns this doc flavor object's media subtype (from the MIME type).String
getMediaType()
Returns this doc flavor object's media type (from the MIME type).String
getMimeType()
Returns this doc flavor object's MIME type string based on the canonical form.String
getParameter(String paramName)
Returns aString
representing a MIME parameter.String
getRepresentationClassName()
Returns the name of this doc flavor object's representation class.int
hashCode()
Returns a hash code for this doc flavor object.String
toString()
Converts thisDocFlavor
to a string.
-
-
-
Field Detail
-
hostEncoding
public static final String hostEncoding
A string representing the host operating system encoding. This will follow the conventions documented in RFC 2278: IANA Charset Registration Procedures except where historical names are returned for compatibility with previous versions of the Java platform. The value returned from method is valid only for the VM which returns it, for use in aDocFlavor
. This is the charset for all the "HOST" pre-definedDocFlavors
in the executing VM.
-
-
Constructor Detail
-
DocFlavor
public DocFlavor(String mimeType, String className)
Constructs a new doc flavor object from the given MIME type and representation class name. The given MIME type is converted into canonical form and stored internally.- Parameters:
mimeType
- MIME media type stringclassName
- fully-qualified representation class name- Throws:
NullPointerException
- ifmimeType
orclassName
isnull
IllegalArgumentException
- ifmimeType
does not obey the syntax for a MIME media type string
-
-
Method Detail
-
getMimeType
public String getMimeType()
Returns this doc flavor object's MIME type string based on the canonical form. Each parameter value is enclosed in quotes.- Returns:
- the mime type
-
getMediaType
public String getMediaType()
Returns this doc flavor object's media type (from the MIME type).- Returns:
- the media type
-
getMediaSubtype
public String getMediaSubtype()
Returns this doc flavor object's media subtype (from the MIME type).- Returns:
- the media sub-type
-
getParameter
public String getParameter(String paramName)
Returns aString
representing a MIME parameter. Mime types may include parameters which are usually optional. The charset for text types is a commonly useful example. This convenience method will return the value of the specified parameter if one was specified in the mime type for this flavor.- Parameters:
paramName
- the name of the parameter. This name is internally converted to the canonical lower case format before performing the match.- Returns:
- a string representing a mime parameter, or
null
if that parameter is not in the mime type string - Throws:
NullPointerException
- if paramName isnull
-
getRepresentationClassName
public String getRepresentationClassName()
Returns the name of this doc flavor object's representation class.- Returns:
- the name of the representation class
-
toString
public String toString()
Converts thisDocFlavor
to a string.
-
hashCode
public int hashCode()
Returns a hash code for this doc flavor object.- Overrides:
hashCode
in classObject
- Returns:
- a hash code value for this object.
- See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
equals
public boolean equals(Object obj)
Determines if this doc flavor object is equal to the given object. The two are equal if the given object is notnull
, is an instance ofDocFlavor
, has a MIME type equivalent to this doc flavor object's MIME type (that is, the MIME types have the same media type, media subtype, and parameters), and has the same representation class name as this doc flavor object. Thus, if two doc flavor objects' MIME types are the same except for comments, they are considered equal. However, two doc flavor objects with MIME types of "text/plain" and "text/plain; charset=US-ASCII" are not considered equal, even though they represent the same media type (because the default character set for plain text is US-ASCII).- Overrides:
equals
in classObject
- Parameters:
obj
-Object
to test- Returns:
true
if this doc flavor object equalsobj
,false
otherwise- See Also:
Object.hashCode()
,HashMap
-
-