springmvc--File Upload Download

Source: Internet
Author: User

I. File download

//File Download@RequestMapping ("/testresponseentity")     Publicresponseentity<byte[]> Testresponseentity (HttpSession session)throwsioexception{byte[] BODY =NULL; InputStream in= Session.getservletcontext (). getResourceAsStream ("/file/abc.txt"); System.out.println ("InputStream" +In ); Body=New byte[In.available ()];                In.read (body); Httpheaders Headers=Newhttpheaders (); Headers.add ("Content-disposition", "Attachment;filename=abc.txt"); Responseentity<byte[]> response =Newresponseentity<byte[]>(body, headers, httpstatus.ok); returnresponse; }

Two. File Upload

SPRINGMVC provides direct support for file uploads, which is implemented through plug-and-play multipartresolver.

Spring implements the Multipartresolver implementation class with Jakarta Commons FileUpload technology: Commonsmultipartresolver

See below how to implement

1. Introduce the following JAR package

Commons-fileupload.jar

Commons-io.jar (Dependency package for the jar above <-)

In the 2.SPRINGMVC configuration file, configure the following

<id= "Multipartresolver"  class= " Org.springframework.web.multipart.commons.CommonsMultipartResolver ">        <   name= "defaultencoding"  value= "UTF-8"></  Property>        </beans>

3. The foreground code is as follows:

<formAction= "Testfileupload"enctype= "Multipart/form-data"Method= "POST">File:<inputtype= "File"name= "File"><BR>Desc:<inputtype= "text"name= "desc"><BR>    <inputtype= "Submit"value= "Submit">    </form>

4. The background code is as follows:

    // File Upload    @RequestMapping (value= "/testfileupload")    public String testfileupload (@RequestParam ("desc" ) String desc,            @RequestParam (throws  ioexception{        System.out.println ("desc:" + desc);        System.out.println ("file name:" + file.getoriginalfilename ());        System.out.println ("file InputStream" + File.getinputstream ());         return "Success";    }

springmvc--File Upload Download

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.