* @param def whether the default xsl or not
* @throws Exception
*/
private static void generateHTML(String arg, String path,
String style, boolean def) throws Exception{
CreateHTMLFile htmlFile = new CreateHTMLFile();
if(arg.toUpperCase().endsWith(".XML")){
htmlFile.getHTML(arg, style, path, def);
}
else{
htmlFile.getHTML(arg.concat(".xml"), style, path, def);
}
}