主要用来往服务器上传文件的
jsp:
<form id="form1" name="form1" method="POST" action="<%=request.getContextPath()%>/FileUploadServlet" enctype="multipart/form-data" class="L5form" target= "_blank ">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td class="FieldLabel" width="15%" nowrap="nowrap">文件上传</td>
<td class="FieldInput" width="35%" nowrap="nowrap">
<input name="file" type="file" size="20" title="选择要上传的文件" style="width:90%">
</td>
</tr>
</table>
</form>
js:
function save(){
document.form1.submit();
}
servlet:
public class FileUploadServlet extends HttpServlet {
private static final long serialVersionUID = -7744625344830285257L;
private ServletContext sc;
private String savePath;
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doPost(request, response);
}
public void init(ServletConfig config) {
// 在web.xml中设置的一个初始化参数
savePath = config.getInitParameter("savePath");
sc = config.getServletContext();
}
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
request.setCharacterEncoding("UTF-8");
String Msg="";
DiskFileItemFactory factory = new DiskFileItemFactory();
ServletFileUpload upload = new ServletFileUpload(factory);
try {
List items = upload.parseRequest(request);
Iterator itr = items.iterator();
while (itr.hasNext()) {
FileItem item = (FileItem) itr.next();
if (item.isFormField()) {
System.out.println("表单参数名:" + item.getFieldName() + ",表单参数值:" + item.getString("UTF-8"));
} else {
if (item.getName() != null && !item.getName().equals("")) {
//System.out.println("上传文件的大小:" + item.getSize());
//System.out.println("上传文件的类型:" + item.getContentType());
// item.getName()返回上传文件在客户端的完整路径名称
// System.out.println("上传文件的名称:" + item.getName());
File tempFile = new File(item.getName());
//上传文件的保存路径
File file = new File(sc.getRealPath("/") + savePath, tempFile.getName());
// System.out.println(sc.getRealPath("/") + savePath);
item.write(file);
// request.setAttribute("Msg", "上传文件成功!");
}else{
// request.setAttribute("Msg", "没有选择上传文件!");
}
}
}
}catch(FileUploadException e){
// e.printStackTrace();
} catch (Exception e) {
// e.printStackTrace();
// request.setAttribute("Msg", "上传文件失败!");
}
// response.sendRedirect("/jsp/cxsdc/jcycommonpipeprovideunit/uploadResult.jsp").forward(request, response);
//request.getRequestDispatcher("/jsp/cxsdc/jcycommonpipeprovideunit/uploadResult.jsp").forward(request, response);
}
}
servlet中的跳转页面走不通,因为jsp中需要异步显示。我用ajax解决不了,主要是文件流传不过去,如下
$.ajax({
type:"post",
cache:false,
timeout:300000,
dataType:"json",
url:"/ftjdc/FileUploadServlet",
success:function (result) {
var json=eval(result);
alert(json.mesg);
window.location.reload();
},
error:function (result) {
alert("失败");
window.location.reload();
}
});
jquer已经应用。
相关解决方案
- (Struts2+JSON+Ajax) XMLHttpRequest ==500如何解决
- 。各位大神,小弟有个简单的有关问题,就是小弟我用struts+ajax+juery+json时为何总是不进入action啊 配置文件如上
- ssh action 调用service的时分service 为null
- Struts-config.xml配置文件《action-地图pings》元素的详解
- jsp servlet 读取图片!该如何处理
- Servlet 连接数据库(mongoDB)是用长连仍是短链比较好
- ajax 多值 jsp 急
- Servlet Session 购物车,该怎么解决
- 关于<form action >的一个有关问题
- Servlet.service() for servlet [jsp] in context with path解决方案
- ajax responsetext 替空值,想不通。
- 关于jsp+servlet+JavaBean的有关问题
- 新手求解,使用struts报错Cannot retrieve definition for form bean studsForm on action /stu,该怎么解决
- servlet+jsp能够获取表单里的数据,在控制台能够打印出来,但是不能安插到mysql,求帮忙
- form 表单交付 <form action="<c:url value='desktop'/>"
- springmvc jquery ajax 提交复杂对象,415异常解决办法
- Servlet Session 购物车解决办法
- jquery ajax select解决方法
- 生手求解,使用struts报错Cannot retrieve definition for form bean studsForm on action /stu
- JSP+Servlet+JavaBean做的留言板,在登录界面跳转不到上一个界面
- 上面是JAVA WEB中,学生在线考试(action)的代码,有几个不明白,帮忙解释一上
- SSH有关问题,There is no Action 地图ped for action name null
- Tomcat 6.0 servlet 中文字符乱码解决思路
- Ajax 更新商品列表下一页,页面不在脑袋开始
- CAPTCHA 模块中 ajax form 导致CAPTCHA session reuse attack detected异常,解决方法
- ajax Post 一直返回的是error ,为啥
- struts2 ajax 上拉框联动有关问题
- AJAX 学习过程中的有关问题
- The requested resource (/webtest/servlet/hello.html) is not availabl 帮忙解决解决方法
- 有个有关问题,请各位帮忙看看:java.lang.ClassNotFoundException: org.apache.struts.action.Act