Export to HTML"

From Documentation
(Created page with "{{ZKSpreadsheetEssentialsPageHeader}} __TOC__ {{ZSS EE}} ===Purpose=== Export ZK Spreadsheet to HTML format === Getting Html Exporter=== ZK Spreadsheet comes with <javadoc dire...")
 
m (correct highlight (via JWB))
 
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
{{ZKSpreadsheetEssentialsPageHeader}}
 
{{ZKSpreadsheetEssentialsPageHeader}}
 +
 +
{{Deprecated|url=http://books.zkoss.org/wiki/ZK_Spreadsheet_Essentials}}
 +
 +
 
__TOC__
 
__TOC__
 
{{ZSS EE}}
 
{{ZSS EE}}
Line 16: Line 20:
  
 
===ZUML===
 
===ZUML===
Here is an example ZUML file that display an Excel book file and has three buttons to export entire workbook,selected sheet and specific selection.
+
Here is an example of ZUML file that displays an Excel book file and has three buttons to export entire workbook,selected sheet and specific selection.
 
<source lang="xml">
 
<source lang="xml">
 
<?page title="ZSS Export to Different File Format" contentType="text/html;charset=UTF-8"?>
 
<?page title="ZSS Export to Different File Format" contentType="text/html;charset=UTF-8"?>
 
<window width="100" height="100%"
 
<window width="100" height="100%"
apply="org.zkoss.zssessentials.export.ExportComposer">
+
apply="org.zkoss.zssessentials.export.ExportToHTMLComposer">
 
<hbox>
 
<hbox>
 
<button id="exportBtn" label="Export All"></button>
 
<button id="exportBtn" label="Export All"></button>
Line 39: Line 43:
 
In composer there are three event handlers each for three export buttons defined in above ZUML.
 
In composer there are three event handlers each for three export buttons defined in above ZUML.
  
====Exporting entire workbook====
+
====Exporting the entire workbook====
To export entire ZK Spreadsheet workbook contents use <javadoc directory="zss" method="export(org.zkoss.zss.model.Book,java.io.OutputStream)">org.zkoss.zss.model.Exporter</javadoc> API. You should be able to get Book instance either by importing Excel book file using Importer interface or using <javadoc directory="zss" method="getBook()">org.zkoss.zss.ui.Spreadsheet</javadoc> API if ZK Spreadsheet component is already initialized with an Excel book file. You should also prepare OutputStream to which new format should be written to. For example
+
To export the entire ZK Spreadsheet workbook content use <javadoc directory="zss" method="export(org.zkoss.zss.model.Book,java.io.OutputStream)">org.zkoss.zss.model.Exporter</javadoc> API. You should be able to get Book instance either by importing Excel book file using Importer interface or using <javadoc directory="zss" method="getBook()">org.zkoss.zss.ui.Spreadsheet</javadoc> API if ZK Spreadsheet component is already initialized with an Excel book file. You should also prepare OutputStream to which new format should be written to. For example
  
<source lang="java" high="8,9" start="5">
+
<source lang="java" highlight="8,9" start="5">
 
public void onClick$exportBtn(Event evt) throws IOException {
 
public void onClick$exportBtn(Event evt) throws IOException {
 
Book wb = spreadsheet.getBook();
 
Book wb = spreadsheet.getBook();
Line 53: Line 57:
 
</source>
 
</source>
  
Here I am using <javadoc directory="zss">org.zkoss.zss.model.Exporters</javadoc> to get <javadoc directory="zss">org.zkoss.zss.model.Exporter</javadoc> implementation to export ZK Spreadsheet contents to HTML format. Similarly you could implement <javadoc directory="zss">org.zkoss.zss.model.Exporter</javadoc> for exporting ZK Spreadsheet contents to PDF, CSV, TabDelimExporter etc. formats.
+
Here I am using <javadoc directory="zss">org.zkoss.zss.model.Exporters</javadoc> to get <javadoc directory="zss">org.zkoss.zss.model.Exporter</javadoc> implementation to export ZK Spreadsheet content to HTML format. Similarly you could implement <javadoc directory="zss">org.zkoss.zss.model.Exporter</javadoc> for exporting ZK Spreadsheet contents to PDF, CSV, TabDelimExporter etc. formats.
  
 
====Exporting specific worksheet====
 
====Exporting specific worksheet====
To export specific worksheet contents use Exporter#export(Worksheet worksheet, OutputStream outputStream) API. First get Worksheet instance by Spreadsheet#getSelectedSheet() or Spreadsheet#getSheet(int). Second prepare OutputStream to which new format should be written to. For example
+
To export specific worksheet content use Exporter#export(Worksheet worksheet, OutputStream outputStream) API. First get Worksheet instance by Spreadsheet#getSelectedSheet() or Spreadsheet#getSheet(int). Second prepare OutputStream to which new format should be written to. For example
  
<source lang="java" high="6,9" start="5">
+
<source lang="java" highlight="6,9" start="5">
 
public void onClick$exportSheetBtn(Event evt) throws IOException {
 
public void onClick$exportSheetBtn(Event evt) throws IOException {
 
Worksheet sheet = spreadsheet.getSelectedSheet();
 
Worksheet sheet = spreadsheet.getSelectedSheet();
Line 68: Line 72:
 
}
 
}
 
</source>
 
</source>
 +
 
====Exporting partial selection====
 
====Exporting partial selection====
To export specific area of worksheet indicated by current selection of multiple cells, use Exporter#exportSelection(Worksheet worksheet, AreaReference area, OutputStream outputStream) API. First get Worksheet instance by Spreadsheet#getSelectedSheet() or Spreadsheet#getSheet(int). Second get current selection using Spreadsheet#getSelection() API and prepare an AreaReference and finally prepare OutputStream to which new format should be written to. For example
+
To export specific area of worksheet indicated by the current selection of multiple cells, use Exporter#exportSelection(Worksheet worksheet, AreaReference area, OutputStream outputStream) API. First get Worksheet instance by Spreadsheet#getSelectedSheet() or Spreadsheet#getSheet(int). Second get current selection using Spreadsheet#getSelection() API and prepare an AreaReference and finally prepare OutputStream to which new format should be written to. For example
  
<source lang="java" high="21,22" start="13">
+
<source lang="java" highlight="21,22" start="13">
 
public void onClick$exportCurrentSelectionBtn(Event evt) throws IOException {
 
public void onClick$exportCurrentSelectionBtn(Event evt) throws IOException {
 
Rect rect = spreadsheet.getSelection();
 
Rect rect = spreadsheet.getSelection();
Line 87: Line 92:
 
</source>
 
</source>
  
See the full source code for Composer [https://code.google.com/p/zkbooks/source/browse/trunk/zssessentials/examples/src/org/zkoss/zssessentials/export/ExportToHTMLComposer.java here]
+
See the full source code for Composer click [https://code.google.com/p/zkbooks/source/browse/trunk/zssessentials/examples/src/org/zkoss/zssessentials/export/ExportToHTMLComposer.java here]
  
 
=Version History=
 
=Version History=

Latest revision as of 12:56, 19 January 2022


Stop.png This article is out of date, please refer to http://books.zkoss.org/wiki/ZK_Spreadsheet_Essentials for more up to date information.


Available in ZK Spreadsheet EE only

Purpose

Export ZK Spreadsheet to HTML format

Getting Html Exporter

ZK Spreadsheet comes with Exporter implementation that allows ZK Spreadsheet contents to be exported to HTML format[1]. Get HTML exporter using Exporters.getExporter(String) as shown below.

Exporter c = Exporters.getExporter("html");
  1. Available in zssex.jar

ZUML

Here is an example of ZUML file that displays an Excel book file and has three buttons to export entire workbook,selected sheet and specific selection.

<?page title="ZSS Export to Different File Format" contentType="text/html;charset=UTF-8"?>
<window width="100" height="100%"
	apply="org.zkoss.zssessentials.export.ExportToHTMLComposer">
	<hbox>
		<button id="exportBtn" label="Export All"></button>
		<listbox id="sheets" mold="select"/>
		<button id="exportSheetBtn" label="Export Sheet"></button>
		<button id="exportCurrentSelectionBtn"
			label="Export Selection">
		</button>
	</hbox>
	<spreadsheet id="spreadsheet"
		src="/WEB-INF/excel/export/export.xlsx" maxrows="200" maxcolumns="40"
		vflex="1" width="100%">
	</spreadsheet>
</window>

Composer

In composer there are three event handlers each for three export buttons defined in above ZUML.

Exporting the entire workbook

To export the entire ZK Spreadsheet workbook content use Exporter.export(Book, OutputStream) API. You should be able to get Book instance either by importing Excel book file using Importer interface or using Spreadsheet.getBook() API if ZK Spreadsheet component is already initialized with an Excel book file. You should also prepare OutputStream to which new format should be written to. For example

	public void onClick$exportBtn(Event evt) throws IOException {
		Book wb = spreadsheet.getBook();
		Exporter c = Exporters.getExporter("html");
		ByteArrayOutputStream baos = new ByteArrayOutputStream();
		c.export(wb, baos);
		Filedownload.save(baos.toByteArray(), "text/html",
				wb.getBookName());
	}

Here I am using Exporters to get Exporter implementation to export ZK Spreadsheet content to HTML format. Similarly you could implement Exporter for exporting ZK Spreadsheet contents to PDF, CSV, TabDelimExporter etc. formats.

Exporting specific worksheet

To export specific worksheet content use Exporter#export(Worksheet worksheet, OutputStream outputStream) API. First get Worksheet instance by Spreadsheet#getSelectedSheet() or Spreadsheet#getSheet(int). Second prepare OutputStream to which new format should be written to. For example

	public void onClick$exportSheetBtn(Event evt) throws IOException {
		Worksheet sheet = spreadsheet.getSelectedSheet();
		Exporter c = Exporters.getExporter("html");
		ByteArrayOutputStream baos = new ByteArrayOutputStream();
		c.export(sheet, baos);
		Filedownload.save(baos.toByteArray(), "text/html", spreadsheet
				.getBook().getBookName());
	}

Exporting partial selection

To export specific area of worksheet indicated by the current selection of multiple cells, use Exporter#exportSelection(Worksheet worksheet, AreaReference area, OutputStream outputStream) API. First get Worksheet instance by Spreadsheet#getSelectedSheet() or Spreadsheet#getSheet(int). Second get current selection using Spreadsheet#getSelection() API and prepare an AreaReference and finally prepare OutputStream to which new format should be written to. For example

	public void onClick$exportCurrentSelectionBtn(Event evt) throws IOException {
		Rect rect = spreadsheet.getSelection();
		String area = spreadsheet.getColumntitle(rect.getLeft())
				+ spreadsheet.getRowtitle(rect.getTop()) + ":"
				+ spreadsheet.getColumntitle(rect.getRight())
				+ spreadsheet.getRowtitle(rect.getBottom());
		Exporter c = Exporters.getExporter("html");
		ByteArrayOutputStream baos = new ByteArrayOutputStream();
		c.exportSelection(spreadsheet.getSelectedSheet(), new AreaReference(
				area), baos);
		Filedownload.save(baos.toByteArray(), "text/html", spreadsheet
				.getBook().getBookName());
	}

See the full source code for Composer click here

Version History

Last Update : 2022/01/19


Version Date Content
     


All source code listed in this book is at Github.


Last Update : 2022/01/19

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.