`
肖泽文
  • 浏览: 25570 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

Can not find a java.io.InputStream with the name [inputStream] in the invocatio

阅读更多

Can not find a java.io.InputStream with the name [inputStream] in the invocation

ava.lang.IllegalArgumentException: Can not find a java.io.InputStream with the name [downloadFile] in the invocation stack. Check the tag specified for this action.
    org.apache.struts2.dispatcher.StreamResult.doExecute(StreamResult.java:237)
    org.apache.struts2.dispatcher.StrutsResultSupport.execute(StrutsResultSupport.java:186)
    com.opensymphony.xwork2.DefaultActionInvocation.executeResult(DefaultActionInvocation.java:362)
    com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:266)
    com.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor.doIntercept(DefaultWorkflowInterceptor.java:165)
    com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:87)
    com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:237)
    com.opensymphony.xwork2.validator.ValidationInterceptor.doIntercept(ValidationInterceptor.java:252)
----------------------------------------------------------------------------------
解决方法:打印InputStream,如果为null,则问题找到了。fileName为空值导致InputStream中返回的ServletActionContext.getServletContext().getResourceAsStream(DOWNLOADFILEPATH+fileName)为null,报出以上异常,找到了异常的根源。
将文件路径打出来,发现fileName为空,即struts获取对象属性失败,然后对此问题进行相关处理,并解决。
==========================================================


strut2下载文件的“ <param name="inputName"> tag specified for this action.”异常 

具体异常是这句话:

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.

1.文件路径不对,根本就没有取到文件。这种情况下,可以将获得InputStream的那条语句放在system.out.println()中输出一下,若为null,那就是路径不对了,或者说得准确些就根本没有找到文件。
2.在action中没有写配置文件中"<param name="inputName">"后面属性的那个get方法.
当以上两种情况都正确的情况下,问题就在这里了:
   当采用 return ServletActionContext.getServletContext().getResourceAsStream("...") 这种方法获得输入流的时候,要保证文件位置在 ServletContext 当中,就是说要在当前的应用上下文中,
如果想要获得外部文件 譬如 D盘中的某个文件,那么就要自己创建输入流才可以,如:
File file = new File("D:\\spring.doc");
分享到:
评论

相关推荐

    API读取Properties文件的六种方法

    throw new ServletException("Could not find resource: " + path); } Properties p = new Properties(); p.load(in); // 示例:获取配置文件中的属性 String dbUrl = p.getProperty("db.url"); System.out....

    java文件io与正则表达式.pdf

    - **System.in 和 System.out**:`System.in` 和 `System.out` 是标准输入和标准输出流,它们分别是 `InputStream` 和 `PrintStream` 类型的对象。用户可以通过重定向标准输入输出流来改变程序的行为。 #### 六、新...

    java自定义类加载器代码示例

    findClass(String name)使用指定的二进制名称查找类,public Class&lt;?&gt; loadClass(String name)使用指定的二进制名称来加载类,protected final Class&lt;?&gt; findLoadedClass(String name)如果Java虚拟机已将此加载器...

    jvm 类加载机制 双亲委派模型

    import java.io.InputStream; import java.net.URL; public class NetworkClassLoader extends ClassLoader { private String rootUrl; // 指向类文件的URL public NetworkClassLoader(String rootUrl) { ...

    Java–Mybatis搭建(XML方式)

    import java.io.InputStream; import java.util.List; public class MybatisTest { public static void main(String[] args) throws IOException { // 读取配置文件 InputStream in = Resources....

    libreoffice python 操作word及excel文档的方法

    pv.Name = 'InputStream' pv.Value = istream document = desktop.loadComponentFromURL('private:stream/swriter', '_blank', 0, (pv,)) text = document.getText() return text ``` #### 读取DOC文档中的...

    Android编程使用sax解析xml数据的方法详解

    import java.io.InputStream; import java.util.ArrayList; import java.util.List; import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.SAXParser; import javax.xml.parsers....

    Android编程实现提取网址链接的方法

    InputStream input = name.openStream(); InputStreamReader isr = new InputStreamReader(input); BufferedReader buffer = new BufferedReader(isr); String inputLine; while ((inputLine = buffer....

Global site tag (gtag.js) - Google Analytics