Package org.deri.eurostat.dsdparser

Examples of org.deri.eurostat.dsdparser.DSDParser.parseFile()


        dsd.xmlFilePath = f.getAbsolutePath();
        dsd.outputFilePath = dsdPath;
        dsd.serialization = "turtle";
        dsd.sdmx_codeFilePath = sdmxTTLFile;
        dsd.initObjects();
        dsd.parseFile();
      }
      else if(f.getName().contains(".sdmx.xml"))
      {
        writeLog("Processing :" + f.getAbsolutePath());
       
View Full Code Here


 
  public void parseDSD(InputStream is) throws IOException
  {
    DSDParser obj = new DSDParser();
    obj.initObjects(is);
    obj.parseFile();
  }
 
  public void parseSDMX(String sdmxFile, String sdmxFilePath, String tsvFilePath) throws Exception
  {
    System.out.println("Parsing SDMX file : " + sdmxFile);
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.