struts2图片显示

struts2图片显示即是文件下载

一、配置struts.xml

        struts.xml中配置stream结果类型,并配置contentType、inputName、contentDisposition、bufferSize参数即可

[html]  view plain copy
  1. <action name="readImgAction" class="com.bk.eserver.web.action.ImgAction" method="readImg" >  
  2.     <result type="stream">  
  3.         <param name="contentType">application/octet-stream</param>  
  4.         <param name="inputName">inputStream</param>  
  5.          <param name="contentDisposition">attachment;filename=${fileName}</param>    
  6.         <param name="bufferSize">4096</param>  
  7.     </result>  
  8. </action>  

二、ImgAction

[java]  view plain copy
  1. public class ImgAction extends WebSupport {  
  2.     private InputStream inputStream;    
  3.   
  4.     /** 
  5.      * 读取图片 
  6.      *  
  7.      * @return 
  8.      */  
  9.     public String readImg() {  
  10.         try {  
  11.             inputStream = new FileInputStream(new File("D:\\meinv.jpg"));  
  12.         } catch (FileNotFoundException e) {  
  13.             e.printStackTrace();  
  14.         }   
  15.         return SUCCESS;  
  16.     }  
  17.       
  18.     public InputStream getInputStream() {  
  19.         return inputStream;  
  20.     }  
  21.   
  22.     public void setInputStream(InputStream inputStream) {  
  23.         this.inputStream = inputStream;  
  24.     }  
  25.   
  26. }  

三、要显示图片的JSP

[html]  view plain copy
  1. <img  src="admin/readImgAction.do">  

恩,页面上将显示如下微笑

struts2图片显示_第1张图片

更多 0
3

你可能感兴趣的:(struts2图片显示)