快速业务通道

struts构建文件上传(六) - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-21

struts构建文件上传(六)

时间:2011-01-17

这是action页面,

package tester.business.maitain; import tclcc.tester.util.Selector; import org.apache.struts.action.*; import javax.servlet.http.*; import java.util.*; import org.apache.struts.upload.FormFile; import java.io.*; public class MaintainAction extends Action { public ActionForward execute(ActionMapping actionMapping, ActionForm actionForm, HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) { /**@todo: complete the business logic here, this is just a skeleton.*/ MaintainForm maintainForm = (MaintainForm) actionForm; TrainPlanDAO trainPDAO = new TrainPlanDAO(); Trainplan trainPlan = new Trainplan(); trainPlan = maintainForm.getTrainPlan(); FormFile theFile = null; theFile = maintainForm.getTheFile1(); String p_accessory; p_accessory = theFile.getFileName(); try { InputStream stream = theFile.getInputStream(); //把文件读入 String filePath = httpServletRequest.getRealPath("/"); //取当前系统路径 ByteArrayOutputStream baos = new ByteArrayOutputStream(); OutputStream bos = new FileOutputStream(filePath + "\\sub" + "/" + theFile.getFileName()); //建立一个上传文件的输出流 //System.out.println(filePath+"/"+file.getFileName()); int bytesRead = 0; byte[] buffer = new byte[8192]; while ( (bytesRead = stream.read(buffer, 0, 8192)) != -1) { bos.write(buffer, 0, bytesRead); //将文件写入服务器 } bos.close(); stream.close(); } catch (Exception e) { System.err.print(e); } try { trainPlan.setP_accessory(p_accessory); trainPDAO.addTrainPlan(trainPlan);//调用数据库插入方法 System.out.println("success"); } catch (Exception ex) { } httpServletRequest.setAttribute("trainPlain", trainPlan); return (actionMapping.findForward("trainplanCreated")); } }

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号