- 
- All Implemented Interfaces:
- ClientBehaviorHolder,- EditableValueHolder,- PartialStateHolder,- StateHolder,- TransientStateHolder,- ValueHolder,- ComponentSystemEventListener,- FacesListener,- SystemEventListenerHolder,- EventListener
 
 public class InputFile extends HtmlInputFile The <o:inputFile>is a component that extends the standard<h:inputFile>and adds support formultiple,directory,acceptandmaxsizeattributes, along with built-in server side validation onacceptandmaxsizeattributes. Additionally, it makes sure that the value of HTML file input element is never rendered. The standard<h:inputFile>rendersPart#toString()to it which is unnecessary.UsageYou can use it the same way as <h:inputFile>, you only need to changeh:intoo:to get the extra support formultiple,directoryandacceptattributes. Here's are some usage examples.Single file selectionIt is basically not different from <h:inputFile>. You might as good use it instead.<h:form enctype="multipart/form-data"> <o:inputFile value="#{bean.file}" /> <h:commandButton value="Upload" action="#{bean.upload}" /> </h:form>private Part file; // +getter+setter public void upload() { if (file != null) { String name = Servlets.getSubmittedFileName(file); String type = file.getContentType(); long size = file.getSize(); InputStream content = file.getInputStream(); // ... } }Note that it's strongly recommended to use Servlets.getSubmittedFileName(Part)to obtain the submitted file name to make sure that any path is stripped off. Some browsers are known to incorrectly include the client side path or even a fake path along with the file name.Multiple file selectionThe multipleattribute can be set totrueto enable multiple file selection. With this setting the enduser can use control/command/shift keys to select multiple files.<h:form enctype="multipart/form-data"> <o:inputFile value="#{bean.files}" multiple="true" /> <h:commandButton value="Upload" action="#{bean.upload}" /> </h:form>private List<Part> files; // +getter+setter public void upload() { if (files != null) { for (Part file : files) { String name = Servlets.getSubmittedFileName(file); String type = file.getContentType(); long size = file.getSize(); InputStream content = file.getInputStream(); // ... } } }Folder selectionThe directoryattribute can be set totrueto enable folder selection. This implicitly also setsmultipleattribute totrueand renders an additionalwebkitdirectoryattribute to HTML for better browser compatibility.<h:form enctype="multipart/form-data"> <o:inputFile value="#{bean.files}" directory="true" /> <h:commandButton value="Upload" action="#{bean.upload}" /> </h:form>private List<Part> files; // +getter+setter public void upload() { if (files != null) { for (Part file : files) { String name = Servlets.getSubmittedFileName(file); String type = file.getContentType(); long size = file.getSize(); InputStream content = file.getInputStream(); // ... } } }Do note that this does not send physical folders, but only files contained in those folders. Media type filteringThe acceptattribute can be set with a comma separated string of media types of files to filter in browse dialog. An overview of all registered media types can be found at IANA.<h:form enctype="multipart/form-data"> <o:inputFile id="file" value="#{bean.losslessImageFile}" accept="image/png,image/gif" /> <h:commandButton value="Upload" action="#{bean.upload}" /> <h:message for="file" /> </h:form><h:form enctype="multipart/form-data"> <o:inputFile id="file" value="#{bean.anyImageFile}" accept="image/*" /> <h:commandButton value="Upload" action="#{bean.upload}" /> <h:message for="file" /> </h:form><h:form enctype="multipart/form-data"> <o:inputFile id="file" value="#{bean.anyMediaFile}" accept="audio/*,image/*,video/*" /> <h:commandButton value="Upload" action="#{bean.upload}" /> <h:message for="file" /> </h:form>This will also be validated in the server side using a built-in validator. Do note that the acceptattribute only filters in client side and validates in server side based on the file extension, and this does thus not strictly validate the file's actual content. To cover that as well, you should in the bean's action method parse the file's actual content using the tool suited for the specific media type, such asImageIO#read()for image files, and then checking if it returns the expected result.The default message for server side validation of acceptattribute is:{0}: Media type of file ''{1}'' does not match ''{2}'' Where {0}is the component's label and{1}is the submitted file name and{2}is the value ofacceptattribute.You can override the default message by the acceptMessageattribute:<h:form enctype="multipart/form-data"> <o:inputFile id="file" value="#{bean.anyImageFile}" accept="image/*" acceptMessage="File {1} is unacceptable!" /> <h:commandButton value="Upload" action="#{bean.upload}" /> <h:message for="file" /> </h:form>Or by the custom message bundle file as identified by <application><message-bundle>infaces-config.xml. The message key isorg.omnifaces.component.input.InputFile.accept.org.omnifaces.component.input.InputFile.accept = File {1} is unacceptable!File size validationThe maxsizeattribute can be set with the maximum file size in bytes which will be validated on each selected file in the client side if the client supports HTML5 File API. This validation will be performed by custom JavaScript in client side instead of by Faces in server side. This only requires that there is a<h:message>or<h:messages>component and that it has itsidset.<o:inputFile id="file" ... /> <h:message id="messageForFile" for="file" /> <!-- This must have 'id' attribute set! --> This way the client side can trigger Faces via an ajax request to update the message component with the client side validation message. Noted should be that the file(s) will not be sent, hereby saving network bandwidth. <h:form enctype="multipart/form-data"> <o:inputFile id="file" value="#{bean.file}" maxsize="#{10 * 1024 * 1024}" /> <!-- 10MiB --> <h:commandButton value="Upload" action="#{bean.upload}" /> <h:message id="messageForFile" for="file" /> </h:form>This will also be validated in the server side using a built-in validator. The default message for both client side and server side validation of maxsizeattribute is:{0}: Size of file ''{1}'' is larger than maximum of {2} Where {0}is the component's label and{1}is the submitted file name and{2}is the value ofmaxsizeattribute.You can override the default message by the maxsizeMessageattribute:<h:form enctype="multipart/form-data"> <o:inputFile id="file" value="#{bean.file}" maxsize="#{10 * 1024 * 1024}" maxsizeMessage="File {1} is too big!" /> <h:commandButton value="Upload" action="#{bean.upload}" /> <h:message id="messageForFile" for="file" /> </h:form>Or by the custom message bundle file as identified by <application><message-bundle>infaces-config.xml. The message key isorg.omnifaces.component.input.InputFile.maxsize.org.omnifaces.component.input.InputFile.maxsize = File {1} is too big!- Since:
- 2.5
- Author:
- Bauke Scholtz
 
- 
- 
Field SummaryFields Modifier and Type Field Description static StringCOMPONENT_TYPEThe component type, which is "org.omnifaces.component.input.InputFile".- 
Fields inherited from class jakarta.faces.component.UIInputALWAYS_PERFORM_VALIDATION_WHEN_REQUIRED_IS_TRUE, COMPONENT_FAMILY, CONVERSION_MESSAGE_ID, EMPTY_STRING_AS_NULL_PARAM_NAME, REQUIRED_MESSAGE_ID, UPDATE_MESSAGE_ID, VALIDATE_EMPTY_FIELDS_PARAM_NAME
 - 
Fields inherited from class jakarta.faces.component.UIComponentATTRS_WITH_DECLARED_DEFAULT_VALUES, BEANINFO_KEY, bindings, COMPOSITE_COMPONENT_TYPE_KEY, COMPOSITE_FACET_NAME, CURRENT_COMPONENT, CURRENT_COMPOSITE_COMPONENT, FACETS_KEY, HONOR_CURRENT_COMPONENT_ATTRIBUTES_PARAM_NAME, VIEW_LOCATION_KEY
 
- 
 - 
Constructor SummaryConstructors Constructor Description InputFile()The constructor instructs Faces to register all scripts during the render response phase if necessary.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddecode(FacesContext context)This override checks if client side validation on maxsize has failed and if multi file upload is enabled.voidencodeEnd(FacesContext context)This override will rendermultiple,directoryandacceptattributes accordingly.StringgetAccept()Returns comma separated string of mime types of files to filter in client side file browse dialog.StringgetAcceptMessage()Returns validation message to be displayed when the condition inacceptattribute is violated.protected ObjectgetConvertedValue(FacesContext context, Object submittedValue)This override will convert the individual parts if multi file upload is enabled and collect only non-null parts having a non-empty file name and a file size above zero.LonggetMaxsize()Returns maximum size in bytes for each selected file.StringgetMaxsizeMessage()Returns validation message to be displayed when the condition inmaxsizeattribute is violated.ObjectgetSubmittedValue()An override which ensures that the Faces implementation being used doesn't save it in the state.ObjectgetValue()This override returns null during render response as it doesn't make sense to renderPart#toString()as value of file input, moreover it's for HTML security reasons discouraged to prefill the value of a file input even though browsers will ignore it.booleanisDirectory()Returns whether or not to enable directory selection.booleanisMultiple()Returns whether or not to allow multiple file selection.voidsetAccept(String accept)Sets comma separated string of media types of files to filter in client side file browse dialog.voidsetAcceptMessage(String acceptMessage)Sets validation message to be displayed when the condition inacceptattribute is violated.voidsetDirectory(boolean directory)Sets whether or not to enable directory selection.voidsetMaxsize(Long maxsize)Sets maximum size in bytes for each selected file.voidsetMaxsizeMessage(String maxsizeMessage)Sets validation message to be displayed when the condition inmaxsizeattribute is violated.voidsetMultiple(boolean multiple)Sets whether or not to allow multiple file selection.voidsetSubmittedValue(Object submittedValue)An override which ensures that the Faces implementation being used doesn't save it in the state.protected voidvalidateHierarchy()Validate the component hierarchy.protected voidvalidateValue(FacesContext context, Object convertedValue)This override will server-side validate anyacceptandmaxsizefor each part.- 
Methods inherited from class jakarta.faces.component.html.HtmlInputFilegetAccesskey, getAlt, getAutocomplete, getDefaultEventName, getDir, getEventNames, getLabel, getLang, getMaxlength, getOnblur, getOnchange, getOnclick, getOndblclick, getOnfocus, getOnkeydown, getOnkeypress, getOnkeyup, getOnmousedown, getOnmousemove, getOnmouseout, getOnmouseover, getOnmouseup, getOnselect, getRole, getSize, getStyle, getStyleClass, getTabindex, getTitle, isDisabled, isReadonly, saveState, setAccesskey, setAlt, setAutocomplete, setDir, setDisabled, setLabel, setLang, setMaxlength, setOnblur, setOnchange, setOnclick, setOndblclick, setOnfocus, setOnkeydown, setOnkeypress, setOnkeyup, setOnmousedown, setOnmousemove, setOnmouseout, setOnmouseover, setOnmouseup, setOnselect, setReadonly, setRole, setSize, setStyle, setStyleClass, setTabindex, setTitle
 - 
Methods inherited from class jakarta.faces.component.UIInputaddValidator, addValueChangeListener, clearInitialState, compareValues, getConverterMessage, getFamily, getRequiredMessage, getValidator, getValidatorMessage, getValidators, getValueChangeListener, getValueChangeListeners, isEmpty, isImmediate, isLocalValueSet, isRequired, isValid, markInitialState, processDecodes, processUpdates, processValidators, removeValidator, removeValueChangeListener, resetValue, restoreState, setConverterMessage, setImmediate, setLocalValueSet, setRequired, setRequiredMessage, setValid, setValidator, setValidatorMessage, setValue, setValueChangeListener, updateModel, validate
 - 
Methods inherited from class jakarta.faces.component.UIOutputgetConverter, getLocalValue, setConverter
 - 
Methods inherited from class jakarta.faces.component.UIComponentBaseaddClientBehavior, addFacesListener, broadcast, encodeBegin, encodeChildren, findComponent, getAttributes, getChildCount, getChildren, getClientBehaviors, getClientId, getFacesContext, getFacesListeners, getFacet, getFacetCount, getFacets, getFacetsAndChildren, getId, getListenersForEventClass, getParent, getPassThroughAttributes, getRenderer, getRendererType, getRendersChildren, getValueBinding, invokeOnComponent, isRendered, isTransient, processRestoreState, processSaveState, queueEvent, removeFacesListener, restoreAttachedState, saveAttachedState, setId, setParent, setRendered, setRendererType, setTransient, setValueBinding, subscribeToEvent, unsubscribeFromEvent
 - 
Methods inherited from class jakarta.faces.component.UIComponentencodeAll, getClientId, getCompositeComponentParent, getContainerClientId, getCurrentComponent, getCurrentCompositeComponent, getNamingContainer, getPassThroughAttributes, getResourceBundleMap, getStateHelper, getStateHelper, getTransientStateHelper, getTransientStateHelper, getValueExpression, initialStateMarked, isCompositeComponent, isInView, isVisitable, popComponentFromEL, processEvent, pushComponentToEL, restoreTransientState, saveTransientState, setInView, setValueExpression, visitTree
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface jakarta.faces.component.behavior.ClientBehaviorHolderaddClientBehavior, getClientBehaviors
 - 
Methods inherited from interface jakarta.faces.component.ValueHoldergetConverter, getLocalValue, setConverter
 
- 
 
- 
- 
- 
Field Detail- 
COMPONENT_TYPEpublic static final String COMPONENT_TYPE The component type, which is "org.omnifaces.component.input.InputFile".- See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
decodepublic void decode(FacesContext context) This override checks if client side validation on maxsize has failed and if multi file upload is enabled. If client side validation on maxsize has failed, then it will render the message. If multi file upload is enabled, then it will set all parts as submitted value instead of only the last part as done in h:inputFile.
 - 
getConvertedValueprotected Object getConvertedValue(FacesContext context, Object submittedValue) This override will convert the individual parts if multi file upload is enabled and collect only non-null parts having a non-empty file name and a file size above zero.- Overrides:
- getConvertedValuein class- UIInput
 
 - 
validateValueprotected void validateValue(FacesContext context, Object convertedValue) This override will server-side validate anyacceptandmaxsizefor each part.- Overrides:
- validateValuein class- UIInput
 
 - 
getValuepublic Object getValue() This override returns null during render response as it doesn't make sense to renderPart#toString()as value of file input, moreover it's for HTML security reasons discouraged to prefill the value of a file input even though browsers will ignore it.- Specified by:
- getValuein interface- ValueHolder
- Overrides:
- getValuein class- UIInput
 
 - 
encodeEndpublic void encodeEnd(FacesContext context) throws IOException This override will rendermultiple,directoryandacceptattributes accordingly. As thedirectoryattribute is relatively new, for better browser compatibility thewebkitdirectoryattribute will also be written along it.They're written as passthrough attributes because in Mojarra the startElement()takes place inencodeEnd(FacesContext)instead ofUIComponentBase.encodeBegin(FacesContext).- Overrides:
- encodeEndin class- UIComponentBase
- Throws:
- IOException
 
 - 
validateHierarchyprotected void validateHierarchy() Validate the component hierarchy. This should only be called when project stage isDevelopment.- Throws:
- IllegalStateException- When component hierarchy is wrong.
 
 - 
getSubmittedValuepublic Object getSubmittedValue() An override which ensures that the Faces implementation being used doesn't save it in the state. ThePartdoes namely not belong there.- Specified by:
- getSubmittedValuein interface- EditableValueHolder
- Overrides:
- getSubmittedValuein class- UIInput
 
 - 
setSubmittedValuepublic void setSubmittedValue(Object submittedValue) An override which ensures that the Faces implementation being used doesn't save it in the state. ThePartdoes namely not belong there.- Specified by:
- setSubmittedValuein interface- EditableValueHolder
- Overrides:
- setSubmittedValuein class- UIInput
 
 - 
isMultiplepublic boolean isMultiple() Returns whether or not to allow multiple file selection. This implicitly defaults totruewhendirectoryattribute istrue.- Returns:
- Whether or not to allow multiple file selection.
 
 - 
setMultiplepublic void setMultiple(boolean multiple) Sets whether or not to allow multiple file selection.- Parameters:
- multiple- Whether or not to allow multiple file selection.
 
 - 
isDirectorypublic boolean isDirectory() Returns whether or not to enable directory selection.- Returns:
- Whether or not to enable directory selection.
 
 - 
setDirectorypublic void setDirectory(boolean directory) Sets whether or not to enable directory selection. Whentrue, this implicitly defaults themultipleattribute totrue.- Parameters:
- directory- Whether or not to enable directory selection.
 
 - 
getAcceptpublic String getAccept() Returns comma separated string of mime types of files to filter in client side file browse dialog. This is also validated in server side.- Returns:
- Comma separated string of mime types of files to filter in client side file browse dialog.
 
 - 
setAcceptpublic void setAccept(String accept) Sets comma separated string of media types of files to filter in client side file browse dialog.- Parameters:
- accept- Comma separated string of mime types of files to filter in client side file browse dialog.
 
 - 
getAcceptMessagepublic String getAcceptMessage() Returns validation message to be displayed when the condition inacceptattribute is violated.- Returns:
- Validation message to be displayed when the condition in acceptattribute is violated.
 
 - 
setAcceptMessagepublic void setAcceptMessage(String acceptMessage) Sets validation message to be displayed when the condition inacceptattribute is violated.- Parameters:
- acceptMessage- Validation message to be displayed when the condition in- acceptattribute is violated.
 
 - 
getMaxsizepublic Long getMaxsize() Returns maximum size in bytes for each selected file. This is validated in both client and server side.- Returns:
- Maximum size in bytes for each selected file.
 
 - 
setMaxsizepublic void setMaxsize(Long maxsize) Sets maximum size in bytes for each selected file.- Parameters:
- maxsize- Maximum size in bytes for each selected file.
 
 - 
getMaxsizeMessagepublic String getMaxsizeMessage() Returns validation message to be displayed when the condition inmaxsizeattribute is violated.- Returns:
- Validation message to be displayed when the condition in maxsizeattribute is violated.
 
 - 
setMaxsizeMessagepublic void setMaxsizeMessage(String maxsizeMessage) Sets validation message to be displayed when the condition inmaxsizeattribute is violated.- Parameters:
- maxsizeMessage- Validation message to be displayed when the condition in- maxsizeattribute is violated.
 
 
- 
 
-