Package org.apache.commons.io.output

Examples of org.apache.commons.io.output.DeferredFileOutputStream


        public Deferred( final PlexusIoResource resource )
            throws IOException
        {
            this.resource = resource;
            dfos = new DeferredFileOutputStream( 1000000, "m-assembly-archiver", null, null );
            InputStream inputStream = getInputStream();
            IOUtils.copy( inputStream, dfos );
            IOUtils.closeQuietly( inputStream );
        }
View Full Code Here

TOP

Related Classes of org.apache.commons.io.output.DeferredFileOutputStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.