出力ストリーム クラスで 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);
助けていただければ幸いです!!