请问有谁仔细看了struts自带的upload?
pede 2004-11-29 05:00:56 struts自带的upload.war例子,我用了感觉不错!
于是我仔细看了一下struts自带的upload的源代码,有一个地方请各位指教:
上传的ActionForm是UploadForm,它有一个方法如下:
public void setTheFile(FormFile theFile) {
this.theFile = theFile;
}
其中,FormFile是一个接口,位于:org.apache.struts.upload.FormFile
struts是如何从网页的theFile中,提取出文件的各种属性的呢。请看下面,文件上传成功后:
The Text: test
The Query Parameter: Successful
The File name: Oracle.txt
The File content type: text/plain
The File size: 377 bytes
请问哪一个类实现了FormFile这个接口?请您指教!