Package net.sf.jpluck.plucker

Examples of net.sf.jpluck.plucker.IniFile


    }

    JXL jxl = new JXL();
    File file = new File(args[0]);
    System.out.println("Reading Plucker INI: " + file.getAbsolutePath());
    IniFile ini = new IniFile(file);
    Document[] documents = ini.getDocuments();
    for (int i = 0; i < documents.length; i++) {
      if (documents[i].getURL().startsWith("http://")) {
        // Only imports HTTP URLs for now
        Element site = jxl.createSiteElement();
        documents[i].toJXLFormat(site);
View Full Code Here

TOP

Related Classes of net.sf.jpluck.plucker.IniFile

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.