File Upload

From Documentation
Revision as of 06:18, 23 July 2010 by Char (talk | contribs) (Created page with ' {{ZKDevelopersGuidePageHeader}} == The File Upload Dialog == The <tt>org.zkoss.zul.Fileupload</tt> class provides a set of utilities to prompt a user to uploading file(s) to th…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


Documentationile Upload
ile Upload


Stop.png This documentation is for an older version of ZK. For the latest one, please click here.


The File Upload Dialog

The org.zkoss.zul.Fileupload class provides a set of utilities to prompt a user to uploading file(s) to the server. Once the get method is called, a file upload dialog is shown client side to prompting the user to specifying file(s) for uploading. It won't return until user has uploaded a file or pressed the cancel button.

10000000000002C800000125B9E0AAC1.png

<window title="Fileupload Demo" border="normal">
	<image id="image"/>
	<button label="Upload">
		<attribute name="onClick">{
			Object media = Fileupload.get();
			if (media instanceof org.zkoss.image.Image)
				image.setContent(media);
			else if (media != null)
				Messagebox.show("Not an image: "+media, "Error",
				Messagebox.OK, Messagebox.ERROR);
			}
		</attribute>
	</button>
</window>

Upload Multiple Files at Once

If you allow users to upload multiple files at once, you can specify the maximum number of files allowed.

100000000000016B000000EAA87608DF.png

<window title="fileupload demo" border="normal">
    <button label="Upload">
        <attribute name="onClick"><![CDATA[{
			Object media = Fileupload.get(5);
			if (media != null)
			for (int j = 0; j < media.length; ++j) {
	            if (media[j] instanceof org.zkoss.image.Image) {
	                Image image = new Image();
	                image.setContent(media[j]);
	                image.setParent(pics);
	            } else if (media[j] != null) {
	                Messagebox.show("Not an image: "+media[j], "Error",
					Messagebox.OK, Messagebox.ERROR);
	            }
			}
        }]]>
		</attribute>
    </button>
    <vbox id="pics"/>
</window>

The fileupload Component

The fileupload component is not a modal dialog. It is a component, so it is placed in line with other components.

Note: In addition to providing the static get method for opening the file upload dialog, org.zkoss.zul.Fileupload itself is a component.

10000000000001130000004F6BCA5979.png

For example,

<image id="img"/>
	Upload your hot shot:
<fileupload onUpload="img.setContent(event.media)"/>

The onUpload Event

When the Upload button is pressed, the onUpload event is sent with an instance of org.zkoss.zk.ui.event.UploadEvent. You can then retrieve the content of the upload files using the getMedia or getMedias methods.

Notice that getMedia and getMedias methods return null to indicate that no file is specified but the Upload button is pressed.

The onClose Event

In addition to the onUpload event, the onClose event is sent to notify that either the Upload button or the Cancel button is pressed. By default, it invalidates the fileupload component, i.e., all fields are cleaned and redrawn. You need to listen to this event to create custom behavior.

Max Upload Size for FileUpload

We used to set the maximum size of uploaded files in the zk.xml file, but it is more convenient to set different maximum size for different components. Since ZK 3.6, you can set max-upload-size to limit the file size.

<fileupload maxsize="50000" />



Last Update : 2010/07/23

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