Struts2 上传文件主要代码

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
public File file; //与页面上的 input file 标签的name 一样
 public String name;

 

/**
  * 上传文件公共方法
  * @param url 地址
  * @param ext 后缀名
  * @return 上传成功
  */
 public boolean file(String url,String ext) {
  response = getResponse();

  InputStream input = null;
  long time = System.currentTimeMillis();
  OutputStream os = null;
  try {
   System.out.println(name);
   SystemParameter systemParameter = (SystemParameter) getRequest()
     .getSession().getServletContext()
     .getAttribute("systemParameter");
   String path = systemParameter.getFilePath() + url ;
   String houzui = name.substring(name.lastIndexOf("("), name.length());
   if (houzui.equals("(空白)")) {
    name=name.substring(0, name.indexOf("("));
   }
   if (name.equals("流程图")) {
    name="liuchen";
   }
   // 检查文件是否存在
   File f = new File(path, name+ ext);
   if (f.exists()) {
    System.out.println(f.getAbsolutePath());
    System.out.println(f.getName());
    String newName = path + name + "old_" + time
      + ext;

    System.out.println(newName);
    boolean is = f.renameTo(new File(newName));
    if (is == false) {
     f.renameTo(new File(path + name + ext));
    
     return false;
    } else {
     // 如果存在,在读一次改过文件的名字,如果新的名字不存在,就提示上传失败
     File file = new File(newName);
     if (!file.exists()) {
      return false;
     }
    }
   }
   input = new FileInputStream(file);

   os = new FileOutputStream(f);
   byte[] by = new byte[1024];
   int length = input.read(by);
   while (length != -1) {
    os.write(by, 0, length);
    length = input.read(by);
   }
   return true;
  } catch (Exception e) {
   // TODO: handle exception
   e.printStackTrace();
  } finally {
   try {
    if (input != null)
     input.close();
    if (os != null)
     os.close();
  } catch (Exception e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }
  }

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:PHP将cvs导入到MySql

下一篇:python在windows锁屏的代码