北在北方

太白枝头看,花开不计年,杯中浮日月,楼外是青天。

导航

2012年5月18日

摘要: 表单中有多个<input type="file" name="uploadfile" contentEditable="false" style="width:80%">,提交表单时需要判断其中至少要有一个input已经选择好文件。 1 <input type="file" name="uploadfile" contentEditable="false" style="width:80%"><br> 阅读全文

posted @ 2012-05-18 17:37 CN.programmer.Luxh 阅读(2503) 评论(0) 推荐(0)

摘要: struts2的文件上传是用拦截器实现的,我们可以不用去关心底层的实现,使得上传文件变得很简单。 Action代码: 1 package com.test; 2 3 import java.io.File; 4 import java.io.IOException; 5 import java.text.SimpleDateFormat; 6 import java.util.Date; 7 import java.util.Random; 8 9 import org.apache.commons.io.FileUtils;10 import org.apache.struts... 阅读全文

posted @ 2012-05-18 00:00 CN.programmer.Luxh 阅读(635) 评论(0) 推荐(0)