• Struts1.1实现文件上传


    <form-beans>
    <form-bean name="movevehicleCfgForm" type="com.huawei.agent.movevehicle.form.MovevehicleCfgForm" />
    </form-beans>

    <action name="movevehicleCfgForm" parameter="method" path="/move/movevehicle" type="org.springframework.web.struts.DelegatingActionProxy">
    <forward name="movevehicleImportShow" path="/mv/movevehicleImport.jsp" />
    </action>

      <form id="myForm" action="" method="post" enctype="multipart/form-data"style="margin-Top:0px;margin-Bottom:0px">

    <input type='file' name='filename' id='filename' value="浏 览"/>

    </form>

    if (file.getFileSize() > 0) {   // 判断是否有文件上传

        FileOutputStream out = null;

        try {

          byte[] b = file.getFileData();  // 取得文件数据

          String fileName = String.valueOf(Calendar.getInstance().getTimeInMillis());

          // 得到文件扩展名

          String extName = file.getFileName().substring(file.getFileName().lastIndexOf("."));

          File outfile = new File(dir + File.separator + fileName + extName);

          out = new FileOutputStream(outfile, false);

          out.write(b); // 通过流将数据写入文件

        } catch (Exception e) {

          e.printStackTrace();

        } finally {

          if (out != null) {

            try {

              out.close(); // 关闭文件输出流

            } catch (IOException e) {

              e.printStackTrace();

            }

          }

        }

      }

  • 相关阅读:
    数据库语句学习(union语句)
    终于开通博客了啦
    Winform用Post方式打开IE
    Winform webbrowser 隐藏 html 元素
    MVC 附件在线预览
    典型用户和场景
    我的第一篇博客01
    大数据算法摘录
    mac下查看端口占用情况
    tomcat的运行脚本
  • 原文地址:https://www.cnblogs.com/lishoubin/p/3222163.html
Copyright © 2020-2023  润新知