× 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.



Shane_Cessna@xxxxxxx skrev den 11-06-2007 21:20:
Joe,

Here's the code...ZipIFSFolder.java

package com.nal.eReqs;

import java.io.*;
import java.util.zip.*;
import com.ibm.as400.access.AS400;
import com.ibm.as400.access.IFSFile;
import com.ibm.as400.access.IFSFileInputStream;
import com.ibm.as400.access.AS400SecurityException;

public class ZipIFSFolder {

public static void ZipFolder(String eReq)
throws IOException {
// Create a buffer for reading the files
byte[] buf = new byte[2147483647];
byte[] buffer = new byte[2147483647];
Are you sure that you need 2Gb buffers? Most IO-routines do not need such large buffers, and Buffered* classes can do a lot of buffering for you.

But, what does the output file and the spool file say for your submitted job. You most likely can see a stack trace right there.

Oh, you can always wrap your main routine in a try-catch(Throwable e) and then dump the stack trace to somewhere where you can see it afterwards.


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
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.