Package uk.ac.ucl.panda.utility.io

Examples of uk.ac.ucl.panda.utility.io.Config


    TrecDoc docMaker = new TrecDoc(data);
      

       appProp.setProperty("doc.maker.forever", "false");
   
       Config config = new Config(appProp);
       docMaker.setConfig(config);
       HTMLParser htmlParser = (HTMLParser) Class.forName(config.get("html.parser","uk.ac.ucl.panda.applications.demo.DemoHTMLParser")).newInstance();
       docMaker.setHTMLParser(htmlParser);
      
       IndexWriter writer = new IndexWriter(indexDir,
          new PorterStemAnalyzer(), true);
      writer.setUseCompoundFile(false);
View Full Code Here

TOP

Related Classes of uk.ac.ucl.panda.utility.io.Config

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.