Package org.archive.wayback.util.flatfile

Examples of org.archive.wayback.util.flatfile.FlatFile.store()


  public void store(File target) throws IOException {
    FlatFile ff = new FlatFile(target.getAbsolutePath());
    Iterator<String> adapted =
      new AdaptedIterator<ResourceFileLocation,String>(iterator(),
        new ResourceFileLocationAdapter());
    ff.store(adapted);
  }

  public static ResourceFileList load(File source) throws IOException {
    ResourceFileList list = new ResourceFileList();
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.