1. 程式人生 > >struts2檔案下載出現Can not find a java io InputStream with the nam

struts2檔案下載出現Can not find a java io InputStream with the nam

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow

也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!

               

  今天在用struts2就行檔案下載時出現如下錯誤:

  1. Servlet.service() for servlet default threw exception   
  2. java.lang.IllegalArgumentException: Can not find a java.io.InputStream with the name [imageStream] in the invocation stack. Check the <param name="inputName"> tag specified for this action.   
  3.     at org.apache.struts2.dispatcher.StreamResult.doExecute(StreamResult.java:189)   
  4.     at org.apache.struts2.dispatcher.StrutsResultSupport.execute(StrutsResultSupport.java:178)   
  5.     at com.opensymphony.xwork2.DefaultActionInvocation.executeResult(DefaultActionInvocation.java:
    348)   
  6.     at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:253)   
  7.     at com.best.top.validate.TopInterceptor.intercept(TopInterceptor.java:47)   
  8.     at com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)   
  9.     at com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)   
  10.     at com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)   
  11.     at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)   
  12.     at org.apache.struts2.impl.StrutsActionProxy.execute(StrutsActionProxy.java:50)   
  13.     at org.apache.struts2.dispatcher.Dispatcher.serviceAction(Dispatcher.java:504)   
  14.     at org.apache.struts2.dispatcher.FilterDispatcher.doFilter(FilterDispatcher.java:419)  

說實話這個提示真有誤導人的嫌疑,剛開始還以為是名稱不對,估計一般人看到這個提示都這樣想。然後檢視StreamResult的原始碼才發現是因為InputStream為null的緣故,汗一個。看下原始碼:

 

  1. if (inputStream == null) {   
  2.                 // Find the inputstream from the invocation variable stack  
  3.                 inputStream = (InputStream) invocation.getStack().findValue(conditionalParse(inputName, invocation));   
  4.             }   
  5.   
  6.             if (inputStream == null) {   
  7.                 String msg = ("Can not find a java.io.InputStream with the name [" + inputName + "] in the invocation stack. " +   
  8.                     "Check the <param name=\"inputName\"> tag specified for this action.");   
  9.                 LOG.error(msg);   
  10.                 throw new IllegalArgumentException(msg);   
  11.             }  

大家如果也碰到此類問題,直接列印
InputStream in=ServletActionContext.getServletContext().getResourceAsStream(realPath);
System.out.println(in);

如果列印為NULL的話,恭喜您,問題得以解決,問題的原因是這個流的realPath路徑錯誤,

 還沒明白的往下看

怪呀,我的配置應該沒錯呀
頁面上:
<a href="fileDownload.action?fileName=<s:property value ="imageName" />">下載此圖片</a>
struts.xml中
----------------------------------------------------------
<!-- 檔案下載,支援中文附件名 -->
   <action name="fileDownload"
    class="com.test.action.filedown.FileDownloadAction">
    <result name="success" type="stream">
     <!-- 動態檔案下載的,事先並不知道未來的檔案型別,那麼我們可以把它的值設定成為:application/octet-stream;charset=ISO8859-1 ,注意一定要加入charset,否則某些時候會導致下載的檔案出錯; -->
     <param name="contentType">
     application/octet-stream;charset=ISO8859-1
     </param>
     <param name="contentDisposition">
      attachment;filename="${downloadFileName}"
     </param>
     <!-- 使用經過轉碼的檔名作為下載檔名,downloadFileName屬性
      對應action類中的方法 getDownloadFileName() 其中特殊的程式碼就是${downloadFileName},它的效果相當於執行的時候將action物件的屬性的取值動態的填充在${}中間的部分,我們可以認為它等價於+action. getDownloadFileName()。 -->
     <param name="inputName">inputStream</param>
     <param name="bufferSize">4096</param>
    </result>
   </action>
----------------------------------------------------------
action中
----------------------------------------------------------
private String fileName;// 初始的通過param指定的檔名屬性 set get

/** 檔名 轉換編碼 防止中文亂碼*/
public String getDownloadFileName() {
   String fileName=ServletActionContext.getRequest().getParameter("fileName");
   String downFileName = fileName;
   try {
    downFileName = new String(downFileName.getBytes(), "ISO8859-1");
   } catch (Exception e) {
    e.printStackTrace();
   }
   return downFileName;
}
//下載的流
public InputStream getInputStream() {
   String name=this.getDownloadFileName();
//  String realPath=ServletActionContext.getServletContext().getRealPath("/uploadImages")+ "/"+name; 路徑錯誤
   String realPath="/uploadImages/"+name;
   InputStream in=ServletActionContext.getServletContext().getResourceAsStream(realPath);
   if(null==in){
    System.out.println("Can not find a java.io.InputStream with the name [inputStream] in the invocation stack. Check the <param name=\"inputName\"> tag specified for this action.檢查action中檔案下載路徑是否正確.");  
   }
   return ServletActionContext.getServletContext().getResourceAsStream(realPath);
}

@Override
public String execute() throws Exception {
   return SUCCESS;
}

           

給我老師的人工智慧教程打call!http://blog.csdn.net/jiangjunshow

這裡寫圖片描述