想用struts2做一个上传图片和歌曲的功能,具体是action里应该怎么写?
SS2H框架上传的功能,哪位好心人给个完整的示例参考下啊!!!上传的文件我只需要把路径存到数据库里面...
SS2H框架上传的功能,哪位好心人给个完整的示例参考下啊!!!上传的文件我只需要把路径存到数据库里面
展开
2个回答
展开全部
Jsp 页面
<s:file name="upload"/></td>
Xml配置
<action name="postnews" method="upLoadFile" class="action.admin.ArticleAction">
<interceptor-ref name ="fileUpload" >
<param name ="allowedTypes" >
image/gif,image/jpeg,image/pjpeg
</param >
</interceptor-ref>
<interceptor-ref name ="defaultStack"/>
<result type="redirect">/admin/news/listnews.action?pid=${form.column_id}</result>
<result name="input">/admin/news/news.jsp</result>
</action>
Action 将路径保存到数据库
public String upLoadFile() throws Exception {
String realpath = ServletActionContext.getServletContext().getRealPath("imageupload");
if (upload != null && upload.length > 0) {
Formbean picform = new Formbean();
String[] filename = new String[upload.length];
for (int i = 0; i < upload.length; i++) {
// 关联键值
filename[i] = (uploadFileName[i]);
File target = new File(realpath, filename[i]);
FileUtils.copyFile(upload[i], target);
}
}
思路是上传文件 ,将文件拷贝到服务器相应位置,然后将路径存入数据库,如果需要读出,就从数据库读出路径并显示
改变xml相应的过滤器的文件格式 就可以传不同的文件了
<s:file name="upload"/></td>
Xml配置
<action name="postnews" method="upLoadFile" class="action.admin.ArticleAction">
<interceptor-ref name ="fileUpload" >
<param name ="allowedTypes" >
image/gif,image/jpeg,image/pjpeg
</param >
</interceptor-ref>
<interceptor-ref name ="defaultStack"/>
<result type="redirect">/admin/news/listnews.action?pid=${form.column_id}</result>
<result name="input">/admin/news/news.jsp</result>
</action>
Action 将路径保存到数据库
public String upLoadFile() throws Exception {
String realpath = ServletActionContext.getServletContext().getRealPath("imageupload");
if (upload != null && upload.length > 0) {
Formbean picform = new Formbean();
String[] filename = new String[upload.length];
for (int i = 0; i < upload.length; i++) {
// 关联键值
filename[i] = (uploadFileName[i]);
File target = new File(realpath, filename[i]);
FileUtils.copyFile(upload[i], target);
}
}
思路是上传文件 ,将文件拷贝到服务器相应位置,然后将路径存入数据库,如果需要读出,就从数据库读出路径并显示
改变xml相应的过滤器的文件格式 就可以传不同的文件了
追问
上传我已经实现,我在工程下面创建了upload文件夹,上传的图片存放到这个文件夹里面。
问题是现在上传成功后,我打开发布到tomcat里面的工程发现upload文件夹容量达到了几百M,又上传了几次后,发现已经快到3个G了。这是怎么回事?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询