0
在輸出流類中創建excel文件時,工作表是使用Excel工作簿名稱創建的。 我開發的代碼如下。請讓我知道正確的代碼以符合我的要求。使用帶有webdriver的Java創建Excel工作簿名稱的Excel工作表
FileInputStream fi =new FileInputStream(System.getProperty("user.dir")+"\\src\\com\\ode\\resources\\Admin_Login.xls");
Workbook wb = Workbook.getWorkbook(fi);
Sheet sh = wb.getSheet("AdminUserLogin");
Sheet sh1 = wb.getSheet("FieldValidations_Zip");
System.out.println("<><><><><> "+sh1.getName());
//Create the Result xls file
FileOutputStream fo = new FileOutputStream("Admin_Login_Results_"+cdate+".xls");
//FileOutputStream fo = new FileOutputStream(System.getProperty("user.dir")+"\\src\\com\\ode\\resources\\output\\Admin_Login_Results_"+cdate+".xls");
WritableWorkbook wwb = Workbook.createWorkbook(fo);
WritableSheet ws = wwb.createSheet("FieldValidations_Zip", 0);
Thread.sleep(Admin_zipcode);
幫助將不勝感激!