57 lines
4.1 KiB
HTML
57 lines
4.1 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html
|
|
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html lang="en-us" xml:lang="en-us">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="security" content="public" />
|
|
<meta name="Robots" content="index,follow" />
|
|
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
|
|
<meta name="DC.Type" content="reference" />
|
|
<meta name="DC.Title" content="Reading spooled files using PrintObjectPageInputStream and PrintObjectTransformedInputStream" />
|
|
<meta name="abstract" content="" />
|
|
<meta name="description" content="" />
|
|
<meta name="copyright" content="(C) Copyright IBM Corporation 2006" />
|
|
<meta name="DC.Rights.Owner" content="(C) Copyright IBM Corporation 2006" />
|
|
<meta name="DC.Format" content="XHTML" />
|
|
<meta name="DC.Identifier" content="printsfv" />
|
|
<meta name="DC.Language" content="en-us" />
|
|
<!-- All rights reserved. Licensed Materials Property of IBM -->
|
|
<!-- US Government Users Restricted Rights -->
|
|
<!-- Use, duplication or disclosure restricted by -->
|
|
<!-- GSA ADP Schedule Contract with IBM Corp. -->
|
|
<link rel="stylesheet" type="text/css" href="./ibmdita.css" />
|
|
<link rel="stylesheet" type="text/css" href="./ic.css" />
|
|
<title>Reading spooled files using PrintObjectPageInputStream and PrintObjectTransformedInputStream</title>
|
|
</head>
|
|
<body id="printsfv"><a name="printsfv"><!-- --></a>
|
|
<!-- Java sync-link --><script language="Javascript" src="../rzahg/synch.js" type="text/javascript"></script>
|
|
<h1 class="topictitle1">Reading spooled files using PrintObjectPageInputStream and PrintObjectTransformedInputStream</h1>
|
|
<div><p></p>
|
|
<div class="section"><p>You can use the <a href="javadoc/com/ibm/as400/access/PrintObjectPageInputStream.html"> PrintObjectPageInputStream</a> class to read the data out
|
|
of a server AFP™ and
|
|
SCS spooled file one page at a time.</p>
|
|
<p>You can obtain a PrintObjectPageInputStream
|
|
object with the <a href="javadoc/com/ibm/as400/access/SpooledFile.html#GETPAGEINPUTSTREAM(COM.IBM.AS400.ACCESS.PRINTPARAMETERLIST)"> getPageInputStream()</a> method.</p>
|
|
<p>Use one of the <a href="javadoc/com/ibm/as400/access/PrintObjectPageInputStream.html#READ()"> read()</a> methods for reading from the input stream. All
|
|
these methods return the number of bytes actually read, or -1 if no bytes
|
|
were read and the end of page was reached.</p>
|
|
<p>Use the <a href="javadoc/com/ibm/as400/access/PrintObjectInputStream.html#AVAILABLE()"> available()</a> method of PrintObjectPageInputStream to
|
|
return the total number of bytes in the current page. The PrintObjectPageInputStream
|
|
class supports marking the input stream, so PrintObjectPageInputStream always
|
|
returns true from the <a href="javadoc/com/ibm/as400/access/PrintObjectPageInputStream.html#MARKSUPPORTED()"> markSupported()</a> method. The caller can use the <a href="javadoc/com/ibm/as400/access/PrintObjectPageInputStream.html#MARK(INT)"> mark()</a> and <a href="javadoc/com/ibm/as400/access/PrintObjectInputStream.html#RESET()"> reset()</a> methods to move the current read position backward
|
|
in the input stream so that subsequent reads reread the same bytes. The caller
|
|
can use the <a href="javadoc/com/ibm/as400/access/PrintObjectInputStream.html#SKIP(LONG)"> skip()</a> method to move the read position forward in the
|
|
input stream without reading the data.</p>
|
|
<p>However, when transforming an
|
|
entire spooled file data stream is desired, use the <a href="javadoc/com/ibm/as400/access/PrintObjectTransformedInputStream.html"> PrintObjectTransformedInputStream</a> class.</p>
|
|
</div>
|
|
<div class="section"><h4 class="sectiontitle">Example</h4><p>The following example shows how to use PrintObjectPageInputStream
|
|
and PrintObjectTransformedInputStream to obtain different transformations
|
|
when reading spooled file data:</p>
|
|
<blockquote><a href="transinstr.htm#transinstr">Example: Reading and transforming spooled files</a></blockquote>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |