1 16 package org.mortbay.servlet; 17 18 import java.io.IOException ; 19 20 import javax.servlet.http.HttpServletResponse ; 21 22 23 24 25 32 public class MultiPartResponse extends org.mortbay.http.MultiPartResponse 33 { 34 35 39 public MultiPartResponse(HttpServletResponse response) 40 throws IOException  41 { 42 super(response.getOutputStream()); 43 response.setContentType("multipart/mixed;boundary="+getBoundary()); 44 } 45 46 }; 47 48 49 50 51 | Popular Tags |