× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



But that's just a code fragment. If you want to compile something it has
to be a Java class. That's why you are getting the error message that
the compiler expects to see the keyword "class" or "interface".

PC2

-----Original Message-----
From: java400-l-bounces@xxxxxxxxxxxx
[mailto:java400-l-bounces@xxxxxxxxxxxx] On Behalf Of davidson_l
Sent: February 15, 2008 11:55
To: java400-l@xxxxxxxxxxxx
Subject: Re: Wrappering Sample for PrintObjectInputStream

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.

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 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.