Package de.scrum_master.galileo

Examples of de.scrum_master.galileo.Book


  public static void main(String[] args) {
    long startTime = System.currentTimeMillis();
    Book.readConfig(true);
    System.out.println("\nChecking book downloads and MD5 checksums:");
    for (String bookID : Book.books.keySet()) {
      Book book = Book.books.get(bookID);
      System.out.print("  " + bookID + " ... ");
      try {
        new FileDownloader(new URL(book.downloadArchive), null, new BigInteger(book.archiveMD5, 16)).download();
        System.out.println("OK");
      } catch (Exception e) {
View Full Code Here

TOP

Related Classes of de.scrum_master.galileo.Book

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.