|
Here's the exact code, straight from Infocenter:
/////////////////////////////////////////////////////////////////////////
// // Example that reads an existing server spooled file. //
// This source is an example of IBM Toolbox for Java
"PrintObjectInputStream". //
/////////////////////////////////////////////////////////////////////////
try{ byte[] buf = new byte[2048];
int bytesRead; AS400 sys = new AS400();
SpooledFile splf = new SpooledFile( sys, // AS400
"MICR", //
splf name 17,
// splf number
"QPRTJOB", // job name
"QUSER", // job user
"020791" ); // job number
// open the spooled file for reading and get the input
stream to // read from it. InputStream in =
splf.getInputStream(null); do {
// read up to buf.length bytes of raw spool data into
// our buffer. The actual bytes read will be returned.
// The data will be a binary printer data stream
that is the // contents of the spooled file.
bytesRead = in.read( buf ); if(
bytesRead != -1 ) { // process
the spooled file data. System.out.println(
"Read " + bytesRead + " bytes" ); } }
while( bytesRead != -1 ); in.close(); }
catch( Exception e ) { // exception }I know
the Navigator interface isn't the preferred choice, but WDSc
won't load on my old Gateway at home.
--
This is the Java Programming on and around the iSeries / AS400 (JAVA400-L) mailing list
To post a message email: JAVA400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/java400-l
or email: JAVA400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/java400-l.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.