2010年4月28日星期三

ADF_092:上传文件到服务器方式之二:使用Button的ActionListener

开发环境:JDeveloper 11.1.2.0.0。
说明:本文改自本人旧作,使用了目前最新的JDeveloper 11.1.2.0.0重新开发验证。(2011-8-1)

1. 新增页面:upload_file.jspx
<af:form id="f1" usesUpload="true">
<af:inputFile label="File Name:" id="if1"
valueChangeListener="#{myBackingBean2.inputFile_valueChangeListener}"
binding="#{myBackingBean2.inputFileComponent}"/>
<af:commandButton text="Upload" id="cb1" actionListener="#{myBackingBean2.doUpload}"/>
</af:form>
说明:
(1)核心处理代码是myBackingBean.uploadButton_actionListener方法,
myBackingBean.inputFile_valueChangeListener方法只是负责给file赋值。
(2)点击Upload按钮会触发ValueChangeEvent发生,然后处理文件上传逻辑。

2. 对应的Managed Bean代码
// 点击Upload按钮时,先调用此方法,因为ValueChange事件先于actionListener事件 。
// 该方法主要作用是给file赋值。
public void inputFile_valueChangeListener(ValueChangeEvent event) {
file = (UploadedFile)event.getNewValue();
}

// 点击Upload按钮时,执行完valueChangeListener后,调用此方法
public void uploadButton_actionListener(ActionEvent event) {
if (!(new File(fileUploadLocation).exists())) {
(new File(fileUploadLocation)).mkdirs();
}
if (file != null && file.getLength() > 0) {
try {
InputStream in = file.getInputStream();
FileOutputStream out = new FileOutputStream(fileUploadLocation + "/" + file.getFilename());
writeInputStreamToOutputStream(in, out);
in.close();
out.close();

String message =
"Successfully uploaded file '" + file.getFilename() + "' (" + file.getLength() + " bytes)";
popupMessage(event, message);
} catch (Exception e) {
e.printStackTrace();
}
// 清空InputFile,这样符合中国人的习惯。
inputFileComponent.setValue(null);
} else {
popupMessage(event, Not_Valid_FileName_Message);
}
}

3. 思考:哪种方式更好一些?
感觉第2种方式更科学和自然一些。
因为点击Upload按钮时,才是真正确认要上传文件,所以主要逻辑应该写在这里。
而ValueChangeEvent发生时,只是选择了一个文件而已,还不能确定用户是否真的要上传。
从代码角度看,第2种方式略微比第一种方式复杂一点点:多了一个私有变量:private UploadedFile file;。

Project下载:UploadFile2.7z

没有评论: