Package org.sonatype.nexus.util.io

Examples of org.sonatype.nexus.util.io.LimitedInputStream


      return null;
    }

    InputStream input = new BufferedInputStream(new FileInputStream(log));
    if (count >= 0) {
      return new LimitedInputStream(input, from, count);
    }
    else {
      return input;
    }
  }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.util.io.LimitedInputStream

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.