久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

spring MVC 文件上傳

 IT技術(shù)武館 2014-06-25

原文鏈接:http://apps.hi.baidu.com/share/detail/34190740

jsp頁面:

<form action="upload.do" method="post" enctype="multipart/form-data">
    <table border="1">
    <tr>
    <td>名稱:</td>
    <td><input type="text" id="name" name="name"></td>
    </tr>
    <tr>
    <td>路徑</td>
    <td><input type="file" id="file" name="file"/></td>
    </tr>
    <tr>
    <td colspan="2"><input type="submit" value="上傳"/></td>
    </tr>
    </table>
    </form>

----------------------------------------------------------------------------

public ModelAndView handleRequest(HttpServletRequest arg0,
   HttpServletResponse arg1) throws Exception {
   //轉(zhuǎn)型為MultipartHttpRequest
  MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest)arg0;
  //根據(jù)前臺的name名稱得到上傳的文件
  MultipartFile file = multipartRequest.getFile("file");   
      // 獲得文件名:   
      String  realFileName = file.getOriginalFilename();  
      System.out.println("獲得文件名:"+realFileName);
      //獲取路徑
      String ctxPath = arg0.getContextPath();
      ctxPath = arg0.getSession().getServletContext().getRealPath("/")+"
\\"+"images\\";
      System.out.println("路徑:"+ctxPath);
      // 創(chuàng)建文件
      File dirPath = new File(ctxPath);
      if(!dirPath.exists())
      {
       dirPath.mkdir();
      }
      File uploadFile = new File(ctxPath+realFileName);
      //
      FileCopyUtils.copy(file.getBytes(), uploadFile);


       return null;
 }

-----------------------------------------------------------------------

XML文件里配置上傳文件的大小

<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <property name="maxUploadSize" value="1048576"/>
        <property name="maxInMemorySize" value="4096"/>
   </bean>

--------------------------------------------------------

切記要---添加commons-fileupload-1.2.jar,,添加commons-io-1.3.1.jar

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn),。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點(diǎn)擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多