【原】java 上传图片 cxf,servlet,spring 标准方式

1.标准的java上传方式

package com.weds.common.pay.servlet;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.List;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.fileupload.FileItem;
import org.apache.commons.fileupload.FileUploadException;
import org.apache.commons.fileupload.disk.DiskFileItemFactory;
import org.apache.commons.fileupload.servlet.ServletFileUpload;
import org.json.JSONObject;

import com.weds.framework.core.common.model.JsonResult;

public class UploadServlet extends HttpServlet {

    /**
     * Destruction of the servlet. <br>
     */
    public void destroy() {
        super.destroy(); // Just puts "destroy" string in log
        // Put your code here
    }

    /**
     * The doGet method of the servlet. <br>
     *
     * This method is called when a form has its tag value method equals to get.
     * 
     * @param request the request send by the client to the server
     * @param response the response send by the server to the client
     * @throws ServletException if an error occurred
     * @throws IOException if an error occurred
     */
    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        response.setContentType("text/html;charset=utf-8");
        request.setCharacterEncoding("utf-8");
        response.setCharacterEncoding("utf-8");
        PrintWriter out = response.getWriter();
        //实现上传的类
        DiskFileItemFactory factory = new DiskFileItemFactory();//磁盘对象
        
        ServletFileUpload upload = new ServletFileUpload(factory);//声明解析request对象
        upload.setFileSizeMax(2*1024*1024);//设置每个文件最大为2M
        upload.setSizeMax(4*1024*1024);//设置一共最多上传4M
        
        try {
            List<FileItem> list = upload.parseRequest(request);//解析
            for(FileItem item:list){//判断FileItem类对象封装的数据是一个普通文本表单字段,还是一个文件表单字段,如果是普通表单字段则返回true,否则返回false。
                if(!item.isFormField()){
                    //获取文件名
                    String fileName = item.getName();
                    //获取服务器端路径
                    String file_upload_loader =this.getServletContext().getRealPath("");
                    System.out.println("上传文件存放路径:"+file_upload_loader);
                    //将FileItem对象中保存的主体内容保存到某个指定的文件中。
                    item.write(new File(file_upload_loader+File.separator+fileName));
                }else{
                    if(item.getFieldName().equalsIgnoreCase("username")){
                        String username = item.getString("utf-8");//将FileItem对象中保存的数据流内容以一个字符串返回
                        System.out.println(username);
                    }
                    if(item.getFieldName().equalsIgnoreCase("password")){
                        String password = item.getString("utf-8");
                        System.out.println(password);
                    }
                }
            }
            //返回响应码(ResultCode)和响应值(ResultMsg)简单的JSON解析
            JsonResult jsonResult=new JsonResult();
            JSONObject json = new JSONObject();
            JSONObject jsonObject = new JSONObject();
            json.put("ResultCode",jsonResult.getCode());
            json.put("ResultMsg",jsonResult.getMsg());
            jsonObject.put("upload",json);
            //System.out.println(jsonObject.toString());
            out.print(jsonObject.toString());
            
        } catch (FileUploadException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }finally{
            out.close();
        }
    }

    /**
     * The doPost method of the servlet. <br>
     *
     * This method is called when a form has its tag value method equals to post.
     * 
     * @param request the request send by the client to the server
     * @param response the response send by the server to the client
     * @throws ServletException if an error occurred
     * @throws IOException if an error occurred
     */
    public void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        doGet(request,response);
    }

    /**
     * Initialization of the servlet. <br>
     *
     * @throws ServletException if an error occurs
     */
    public void init() throws ServletException {
        // Put your code here
    }

}

然后配置servlet

   <servlet>
        <servlet-name>upload</servlet-name>
        <servlet-class>com.weds.common.pay.servlet.UploadServlet</servlet-class>
        <load-on-startup>3</load-on-startup>
   </servlet>
   <servlet-mapping>
       <servlet-name>upload</servlet-name>
       <url-pattern>/upload</url-pattern>
   </servlet-mapping>
  1. 标准java 通过 request的方式 笔者用的是spring + Apache cxf rest

    接口定义

    @POST  
    @Path("/upload")
    @Consumes(MediaType.MULTIPART_FORM_DATA)//当前方法接收的参数类型
    public String uploadFile();

接收实现

@Override
    public String uploadFile() {
        HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder
                .getRequestAttributes()).getRequest();
        // 实现上传的类
        DiskFileItemFactory factory = new DiskFileItemFactory();// 磁盘对象
        ServletFileUpload upload = new ServletFileUpload(factory);// 声明解析request对象
        upload.setFileSizeMax(2 * 1024 * 1024);// 设置每个文件最大为2M
        upload.setSizeMax(4 * 1024 * 1024);// 设置一共最多上传4M
        try {
            List<FileItem> list = upload.parseRequest(request);// 解析
            for (FileItem item : list) {// 判断FileItem类对象封装的数据是一个普通文本表单字段,还是一个文件表单字段,如果是普通表单字段则返回true,否则返回false。
                if (!item.isFormField()) {
                    // 获取文件名
                    String fileName = item.getName();
                    // 获取服务器端路径
                    String file_upload_loader = request.getServletContext()
                            .getRealPath("");
                    System.out.println("上传文件存放路径:" + file_upload_loader);
                    // 将FileItem对象中保存的主体内容保存到某个指定的文件中。
                    item.write(new File(file_upload_loader + File.separator
                            + fileName));
                } else {
                    if (item.getFieldName().equalsIgnoreCase("username")) {
                        String username = item.getString("utf-8");// 将FileItem对象中保存的数据流内容以一个字符串返回
                        System.out.println(username);
                    }
                    if (item.getFieldName().equalsIgnoreCase("password")) {
                        String password = item.getString("utf-8");
                        System.out.println(password);
                    }
                }
            }
        } catch (FileUploadException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            // out.close();
        }
        return "ok";
    }

注意这里获取request的时候,必须用上面的写法,通过 @Autowired注入获取request的方式在这里是不能用的,原因不详,求大神指点。
3.cxf rest 风格上传实现 @Multipart的 type是可以省略的,下面的写法,尤其是image,其实限制了图片的类型,要求很严格。

/** 
     * 表单提交,文件上传 
     * @return 
     */  
    @POST  
    @Path("/uploadimage")  
    @Consumes("multipart/form-data")  
    public String uploadFileByForm(  
            @Multipart(value="id",type="text/plain")String id,  
            @Multipart(value="name",type="text/plain")String name,  
            @Multipart(value="file",type="image/png")Attachment image);  

接口的实现:

实现方式很多种:

如下是第一种,这是最简单的方式,直接取出流,然后读取

@Override
    public String uploadFileByForm(
            @Multipart(value = "id", type = "text/plain") String id,
            @Multipart(value = "name", type = "text/plain") String name,
            @Multipart(value = "file", type = "image/png") Attachment image) {
        try {
            OutputStream out = new FileOutputStream(new File("d:\\a.png"));
            image.getDataHandler().writeTo(out);
            out.close();
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return "ok";
    }

第二种:

    @Override
    public String uploadFileByForm(
            @Multipart(value = "id", type = "text/plain") String id,
            @Multipart(value = "name", type = "text/plain") String name,
            @Multipart(value = "file", type = "image/png") Attachment image) {
        System.out.println("id:" + id);
        System.out.println("name:" + name);
        DataHandler dh = image.getDataHandler();
        try {
            InputStream ins = dh.getInputStream();
            writeToFile(ins,"d:\\"+ new String(dh.getName().getBytes("iso-8859-1"),"utf-8"));
        } catch (Exception e) {
            e.printStackTrace();
        }
        return "ok";
    }

    private void writeToFile(InputStream ins, String path) {        
        try {
            OutputStream out = new FileOutputStream(new File(path));
            byte[] bytes = new byte[1024];
            while (ins.read(bytes) != -1) {
                out.write(bytes);
            }
            out.flush();
            out.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

当然 writeToFile方法也可以这么实现:

private void writeToFile(InputStream ins, String path) {
        try {
            OutputStream out = new FileOutputStream(new File(path));
            int read = 0;
            byte[] bytes = new byte[1024];
            while ((read = ins.read(bytes)) != -1) {
                out.write(bytes, 0, read);
            }
            out.flush();
            out.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

注意:笔者在用cxf rest做上传的时候还遇到了个问题,折腾了半天:

笔者写了个cxf的Interceptor 拦截器,实现了AbstractPhaseInterceptor<Message>,用来拦截客户端传过来的数据,做数据处理,比如加解密,身份认证,等等,但是笔者有把客户端传过来的流出来分析了之后,在回写进去的操作,这么一来就发生了一个问题,这里处理的应该是字符流,而上传图片的时候是文件流,流只能读取一次,笔者处理完了之后,cxf的接收实现类里,在执行上面的读取文件流的图片的时候,就出现了个问题,笔者原本的图片是122k,由于拦截器的原因,这时候把图片写到文件里变成了200k,然后图片就打不开了,要注意!!!

另外:writeToFile(ins,"d:\"+ new String(dh.getName().getBytes("iso-8859-1"),"utf-8"));,这里,红色部分是为了防止客户端上传的图片中文名字乱码,其实没啥鸟用,因为我们的文件流上传之后,一般会用GUID 代替原来的文件名字。

4.服务端 rest接口,直接接收客户端的流

    /** 
     * 表单提交,文件上传 
     * @return 
     */  
    @POST  
    @Path("/uploadimage")  
    @Consumes("application/binary")  
    public String uploadFileByForm(InputStream inputStream); 
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,793评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,567评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,342评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,825评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,814评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,680评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,033评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,687评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,175评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,668评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,775评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,419评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,020评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,206评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,092评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,510评论 2 343

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,596评论 18 139
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,454评论 25 707
  • 每个人心中都有一些割舍不下却又随着时间流逝慢慢陌生的人。 今日我又遇到了他,是在考研后的早起。还记得上次见他时,他...
    金陵度年阅读 295评论 0 0
  • 生活必须体验丰富的情感,把自己变成丰富、宽大能优容能了解,能懂得自己,不苛责自己,也不苛责旁人。___林徽因 一张...
    niko麻麻阅读 1,755评论 1 5
  • 问题一:### 碰到别人倒地不起时,应该怎么办?你拨打120?还有呢? 问题二:### 这样的方法有效吗?等待12...
    simtech2win阅读 330评论 0 0