我想在JExcel中创建多个工作表。
我正在尝试使用一个数组,并为所需的2个参数使用不同的值创建每个工作表。
这是主要代码:
WritableSheets[] sheets = new [3] WritableSheets;
String [] names = new [3] String;
try
{
spreadsheet = Workbook.createWorkbook(new File(EXCEL_FILE_LOCATION));
for (int countMonths = 0; countMonths < 3; countMonths++)
{
sheetNames[countMonths] = "worksheet" + Integer.toString(countMonths);
sheets[countMonths] = spreadsheet.createSheet(sheetNames[countMonths], countMonths);
sheets[countMonths].addCell...etc.
}
}//end try
我的问题是,这将创建一个只有一个工作表的电子表格(似乎每次都覆盖相同的工作表)。