https://bz.apache.org/bugzilla/show_bug.cgi?id=68974
--- Comment #5 from J English <jengl...@xifin.com> --- Sorry, please use this version of the test class. This version has the correct file names for the csv file, excel template file, and output file. Thank you import java.io.File; public class TestExcelWriter { public static void main(String[] args) throws Exception { File outPutFile = new File("outputFile.xlsx"); String templateFilePath = "template.xlsx"; File csvFile = new File("inputFile.csv"); ExcelWriter excelWriter = new ExcelWriter(); excelWriter.generateExcelFile(outPutFile, templateFilePath, csvFile); } } -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org For additional commands, e-mail: dev-h...@poi.apache.org