realpath
=
servletactioncontextgetservletcontext()getrealpath("/upload")
;//获取服务器路径
string[]
targetfilename
=
uploadfilename;
for
(int
i
=
0;
i
<
uploadlength;
i++)
{
file
target
=
new
file(realpath,
targetfilename[i]);
fileutilscopyfile(upload[i],
target);
//这是一个文件复制类copyfile()里面就是io *** 作,如果你不用这个类也可以自己写一个io复制文件的类
}
其中private
file[]
upload;//
实际上传文件
private
string[]
uploadcontenttype;
//
文件的内容类型
private
string[]
uploadfilename;
//
上传文件名
这三个参数必须这样命名,因为文件上传控件默认是封装了这3个参数的,且在action里面他们应有get,set方法
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)