fileupload.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import = "java.util.*"%>
  3. <%@ page import = "cn.js.fan.web.*"%>
  4. <%@ page import = "cn.js.fan.db.*"%>
  5. <%@ page import = "cn.js.fan.util.*"%>
  6. <%@ page import = "com.redmoon.oa.address.*"%>
  7. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  12. <title>通讯录</title>
  13. <link href="../common.css" rel="stylesheet" type="text/css">
  14. <%@ include file="../inc/nocache.jsp"%>
  15. <%
  16. FileUpMgr fum = new FileUpMgr();
  17. boolean re = false;
  18. String op = ParamUtil.get(request, "op");
  19. String excelFile="";
  20. if (op.equals("add")) {
  21. try {
  22. excelFile = fum.uploadExcel(application, request);
  23. }
  24. catch (ErrMsgException e) {
  25. out.print(StrUtil.Alert_Back(e.getMessage()));
  26. }
  27. }
  28. %>
  29. </head>
  30. <body>
  31. <table width="754" border="0">
  32. <form name="form1" action="?op=add" method="post" encType="multipart/form-data">
  33.   <tr>
  34.     <td width="257">&nbsp;</td>
  35.     <td width="487"><input title="选择附件文件" type="file" size="30" name="image"></td>
  36.   </tr>
  37.   <tr>
  38.     <td>&nbsp;</td>
  39.     <td><input name="submit" type="submit" value="确定"></td>
  40.   </tr>
  41. </form>  
  42. </table>
  43. </body> 
  44. </html>