<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    posts - 0, comments - 77, trackbacks - 0, articles - 356
      BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理

    StrutsFileDownload-----DownloadAction

    Posted on 2007-01-03 14:05 semovy 閱讀(1489) 評論(3)  編輯  收藏 所屬分類: struts

    StrutsFileDownload

    A new DownloadAction was added in Struts 1.2.6 (see the [WWW] JavaDoc). This page is to show how to use it and has the following structure:

    1. Implementing a DownloadAction
      1. Implement the getStreamInfo() Method
      2. Implement the getBufferSize() Method
    2. Examples
      1. FileStreamInfo Example
      2. ResourceStreamInfo Example
      3. Byte Array Example
    3. Using the DownloadAction in your Web Pages
    4. Content Disposition
      1. Setting the Content Disposition
      2. Content Disposition Values

    (!) FrankZ: Here is the sample webapp... downloadapp.zip Please note that this is my first ever attempt at editing a Wiki entry, so if I screwed anything up, I apologize in advance! Lastly, I skimmed through the content of this entry and didn't see anything blatantly wrong. I will try and proof it more thoroughly as time allows, but for now, in addition to the sample app, it should get anyone going in the right direction.

    <!> niallp: Since I haven't actually used this class myself, I'm hoping that Martin, Frank or anyone else involved in the discussion/creation of this would take a look here to see if its OK.

    (!) Details from this thread: [WWW] Mail Archive - Note that the link to the sample app at omnytex.com referenced in this thread is no longer valid. The sample app is attached to this Wiki page only, so download it from here downloadapp.zip

    Implementing a DownloadAction

    You need to extend org.apache.struts.actions.DownloadAction and implement the getStreamInfo() method. Optionally you can also override the getBufferSize() method if you require a different buffer size from the default.

    Implement the getStreamInfo() Method

    The getStreamInfo() method returns a StreamInfo object - which is an inner interface of the DownloadAction. The DownloadAction provides two concrete implementations (static inner classes) of the StreamInfo interface:

    • FileStreamInfo - Simplifies downloading of a file from disk - need to pass a java.io.File object to the constructor along with the content type.

    • ResourceStreamInfo - simplifies downloading of a web application resource - need to pass the ServletContext, path and content type to its constructor.

    In the examples below, I have also provided a Byte array implementation of the StreamInfo interface.

    Implement the getBufferSize() Method

    The DownloadAction, by default, returns a buffer size of 4096. Optionally, this may be overriden to customize the size of the buffer used to transfer the file.

    Examples

    Below are three examples:

    • using a File

    • using a web application resource

    • using a byte array.

    FileStreamInfo Example

    Example of using the DownloadAction with a file. This example picks up the file name from the parameter attribute in the strust-config.xml action mapping.

    import java.io.File;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.actions.DownloadAction;
    
    public class ExampleFileDownload extends DownloadAction{
    
        protected StreamInfo getStreamInfo(ActionMapping mapping, 
                                           ActionForm form,
                                           HttpServletRequest request, 
                                           HttpServletResponse response)
                throws Exception {
            
            // Download a "pdf" file - gets the file name from the
            // Action Mapping's parameter
            String contentType = "application/pdf";
            File file          = new File(mapping.getParameter());
    
            return new FileStreamInfo(contentType, file);
            
        }
    
    }
    
    

    ResourceStreamInfo Example

    Example of using the DownloadAction with a web application resource. This example picks up the web application resource path from the parameter attribute in the strust-config.xml action mapping.

    import javax.servlet.ServletContext;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.actions.DownloadAction;
    
    public class ExampleResourceDownload extends DownloadAction {
    
        protected StreamInfo getStreamInfo(ActionMapping mapping, 
                                           ActionForm form,
                                           HttpServletRequest request, 
                                           HttpServletResponse response)
                throws Exception {
            
            // Download a "jpeg" file - gets the file name from the
            // Action Mapping's parameter
            String contentType         = "image/jpeg";
            String path                = mapping.getParameter();
            ServletContext application = servlet.getServletContext();
            
            
            return new ResourceStreamInfo(contentType, application, path);
            
        }
    
    }
    
    
    

    Byte Array Example

    Example of using the DownloadAction with a Byte Array.

    This example creates a ByteArrayStreamInfo inner class which implements the StreamInfo interface.

    (niallp: IMO we should include this ByteArrayStreamInfo in the implementation)

    import java.io.IOException;
    import java.io.InputStream;
    import java.io.ByteArrayInputStream;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.actions.DownloadAction;
    
    public class ExampleByteArrayDownload extends DownloadAction {
    
        protected StreamInfo getStreamInfo(ActionMapping mapping, 
                                           ActionForm form,
                                           HttpServletRequest request, 
                                           HttpServletResponse response)
                throws Exception {
            
            // Download a "pdf" file
            String contentType = "application/pdf";
            byte[] myPdfBytes  = null;              // Get the bytes from somewhere
    
            return new ByteArrayStreamInfo(contentType, myPdfBytes);
            
        }
    
        protected class ByteArrayStreamInfo implements StreamInfo {
            
            protected String contentType;
            protected byte[] bytes;
            
            public ByteArrayStreamInfo(String contentType, byte[] bytes) {
                this.contentType = contentType;
                this.bytes = bytes;
            }
            
            public String getContentType() {
                return contentType;
            }
    
            public InputStream getInputStream() throws IOException {
                return new ByteArrayInputStream(bytes);
            }
        }
    }
    
    

    Using the DownloadAction in your Web Pages

    The last bit of the puzzle is how do I use this action?

    You need to do two things:

    • As with any Struts action, you need to configure it in the struts-config.xml

    • Use it on your web page like any other link to a file

    So for example you might have something like the following in your struts-config.xml:

        <action path="/downloadMyPdfFile" type="myPackage.ExampleFileDownload" parameter="/foo/bar.pdf">
        <action path="/downloadMyImage"   type="myPackage.ExampleResourceDownload" parameter="/images/myImage.jpeg">
    
    

    The on your jsp page, you might use these in the following way:

        <html:img action="downloadMyImage" alt="My Image" height="400" width="400"/>
    
        <html:link action="downloadMyPdfFile">Click Here to See the PDF</html:link>
    
    

    Note you may need to set the nocache value to false in the controller section of your struts config file. Nocache set to true prevented me from being able to use Internet Explorer to download the file succesfully; Firefox and Safari worked fine.

        <controller contentType="text/html;charset=UTF-8" locale="true" nocache="false" />
    

    Content Disposition

    Setting the Content Disposition

    DownloadAction doesn't cater for setting the content dispositon header. The easiest way is set it in the getStreamInfo() method, for example...

    public class ExampleFileDownload extends DownloadAction{
    
    
        protected StreamInfo getStreamInfo(ActionMapping mapping, 
                                           ActionForm form,
                                           HttpServletRequest request, 
                                           HttpServletResponse response)
                throws Exception {
    
            // File Name
            String fileName = mapping.getParameter();
    
            // Set the content disposition
            response.setHeader("Content-disposition", 
                               "attachment; filename=" + fileName);
            
            // Download a "pdf" file - gets the file name from the
            // Action Mapping's parameter
            String contentType = "application/pdf";
            File file          = new File(fileName);
    
            return new FileStreamInfo(contentType, file);
            
        }
    }
    
    

    Probably would want to play with the file name, to remove any path info first.

    Content Disposition Values

    You can set the content disposition to either download the file or open up in the browser:

    • To open up in the browser: "inline; filename=myFile.pdf"

    • To download: "attachment; filename=myFile.pdf"

    Displaying images I always set the content disposition to the "inline" option.

    NOTE: I'm not expert at this, just got it working by trial and error. I had problems and I'm seem to remember I had to play with setting the response headers to get it to work properly. There may also be browser issues - my app only has to work with IE. Anyone who knows more about this, feel free to amend this page.

    FIX for IE: Content-Disposition Attachment Header Does Not Save File [WWW] link

    last edited 2006-01-25 18:40:18 by WendySmoak


    評論

    # re: StrutsFileDownload-----DownloadAction  回復  更多評論   

    2009-04-16 13:50 by famingyuan
    sorry,I think the third method is not very good!

    the process is: File ---FileInputStream---ByteArrayOutputStream---

    ByteArray---BufferedArrayInputStream at last the file return as a

    InputStream ,So why not at first make file to InputStream to return

    # re: StrutsFileDownload-----DownloadAction  回復  更多評論   

    2009-04-16 13:51 by famingyuan
    but I still thank you very much!

    you let me know much! thank you very very very much!

    # re: StrutsFileDownload-----DownloadAction  回復  更多評論   

    2009-04-16 13:54 by famingyuan
    I will offen come to see you homepage!

    I will always expect you bring us more hard-won and import information about java and java web !

    thanks again!
    主站蜘蛛池模板: 两性色午夜视频免费网| 国产成人亚洲精品电影| 中文字幕视频免费在线观看| 日本免费福利视频| 一区二区亚洲精品精华液| 67194熟妇在线永久免费观看| 无码久久精品国产亚洲Av影片| 在线免费视频你懂的| 亚洲小说区图片区另类春色| www在线观看播放免费视频日本| 亚洲精品老司机在线观看| 久久亚洲AV成人无码国产电影| 国产网站在线免费观看| 看一级毛片免费观看视频| 国产一级淫片免费播放电影 | 亚洲成a人片77777老司机| 久久精品成人免费观看| 亚洲电影一区二区| 最近中文字幕高清免费中文字幕mv | 日韩免费观看的一级毛片| 国产亚洲欧美日韩亚洲中文色| 国产a级特黄的片子视频免费| 美女视频黄.免费网址| 亚洲无线一二三四区手机| 中国一级毛片免费看视频| 久久夜色精品国产嚕嚕亚洲av| 免费人成在线观看网站品爱网| 亚洲精品国产啊女成拍色拍| 美女被免费视频网站a国产 | 99久久国产热无码精品免费| 一区二区亚洲精品精华液| 亚洲国产精品专区在线观看| 91国内免费在线视频| 亚洲沟沟美女亚洲沟沟| 超pen个人视频国产免费观看| 成人免费无码H在线观看不卡| 337p日本欧洲亚洲大胆色噜噜| 免费特级黄毛片在线成人观看| 黑人粗长大战亚洲女2021国产精品成人免费视频 | 成人婷婷网色偷偷亚洲男人的天堂| 亚洲一区无码精品色|