| 构造器和说明 |
|---|
Workbook(java.io.OutputStream os,
java.lang.String applicationName,
java.lang.String applicationVersion)
Constructor.
|
| 限定符和类型 | 方法和说明 |
|---|---|
void |
finish()
Complete workbook generation: this writes worksheets and additional files
as zip entries to the output stream.
|
Worksheet |
newWorksheet(java.lang.String name)
Create a new worksheet in this workbook.
|
public Workbook(java.io.OutputStream os,
java.lang.String applicationName,
java.lang.String applicationVersion)
os - Output stream eventually holding the serialized workbook.applicationName - Name of the application which generated this
workbook.applicationVersion - Version of the application. Ignored if
null. Refer to
this
page for details.public void finish()
throws java.io.IOException
java.io.IOException - In case of I/O error.public Worksheet newWorksheet(java.lang.String name)
name - Name of the new worksheet.