Package lupos.datastructures.patriciatrie.disk.nodemanager

Examples of lupos.datastructures.patriciatrie.disk.nodemanager.NodeInputStream


  private void prepareInputStream() {
    try {
      this.releaseInputStream();
      this.releaseOutputStream();
     
      this.inputStream = new NodeInputStream(new BufferedInputStream(new FileInputStream(new File(this.fileName))));
     
      // First bit of each file is the completeMetadata flag
      this.completeMetadata = (this.inputStream.read() == 1);
    } catch (IOException e) {
      e.printStackTrace();
View Full Code Here

TOP

Related Classes of lupos.datastructures.patriciatrie.disk.nodemanager.NodeInputStream

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.