Search This Blog

Friday, July 17, 2009

File UpLoad in Iceface

Hi all,

Here is the code to rename the uploaded file

In JSF page:


actionListener="#{fileupload.action}" uploadDirectory="C:\Upload" uploadDirectoryAbsolute="true"/>





In Manager Bean:

To display the uploaded file name in jsf page

String fileName;

public String getFileName() {
return fileName;
}

public void setFileName(String fileName) {
this.fileName = fileName;
}

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.