Examples of EWorld2VanetMobisim


Examples of de.hpi.eworld.exporter.vanetmobisim.EWorld2VanetMobisim

    //ok, now actually load the .ewd file
   
    PersistenceManager.getInstance().loadFromFile("./resources/export/berlin_test.ewd");

    //start export
    EWorld2VanetMobisim ew2v = new EWorld2VanetMobisim(DIR_VANET_TESTRES);
    ew2v.run();
    Assert.assertTrue(ew2v.wasExportSuccessful());
   
    //parse export result
    VanetHandler vanetHandler = new VanetHandler();
    SAXParser saxParser = SAXParserFactory.newInstance().newSAXParser();
    saxParser.parse(new FileInputStream(DIR_VANET_TESTRES), vanetHandler);
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.