|
You aren't doing the EBCDIC-to-Unicode conversion. Try finding the standard CCSID on your iSeries (for example mine is 37) and use it like this: BufferedReader d = new BufferedReader(new InputStreamReader(inputStream, "CP037")); PC2 -----Original Message----- From: java400-l-bounces+pclapham=core-mark.com@xxxxxxxxxxxx [mailto:java400-l-bounces+pclapham=core-mark.com@xxxxxxxxxxxx] On Behalf Of Ashish Kulkarni Sent: January 6, 2005 20:52 To: java400-l@xxxxxxxxxxxx Subject: read spool file using java Hi I am trying to read a spool file using jt400 and java program, here is the code , but all i get is junk has anyone read spool file using jt400. SpooledFile sf = new SpooledFile(as400,"TESTDATA",000001,"QPADEV0055" , "CXASH", "166703"); PrintObjectInputStream inputStream = sf.getInputACIFMergedStream(true); System.out.println ("size " + inputStream.available()); BufferedReader d = new BufferedReader(new InputStreamReader(inputStream)); String data =""; while((data = d.readLine() )!=null) { System.out.println (data); } Ashish
As an Amazon Associate we earn from qualifying purchases.
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.