2014年03月29日 15:57:51
⁄ Struts 
⁄ 共 2452字
⁄ 被围观 2,196次
在 struts1 中,上传文件很方便,使用FormFile接口。
1. 在 jsp 中创建表单。注意:上传时必须用 post 提交方式,另外,enctype属性必须有。
Code ViewPrint
<form action="upload.do" method="post" enctype="multipart/form-data">
标题:<input type="text" name="title"><br>
文件:<input type="file" name="myfile"><br>
<input type="submit" value="上传">
<...
Jsp, Struts, 上传阅读全文