首页 > 代码库 > struts2文件下载,动态设置资源地址
struts2文件下载,动态设置资源地址
转自:http://blog.csdn.net/ctrl_shift_del/article/details/6277340
1 ServletActionContext.getServletContext().getResourceAsStream("/"+tempfile);
这是java加载资源的方法,所谓资源,实际上是任何一个文件,但特别的 是,getResourceAsStream这个方法不使用绝对路径,
而是使用相对于classpath环境变量的相对路径。
所 以,如果写:
1 getResourceAsStream("/resource.xml");
则要保证classpath下有 resource.xml文件就能找到。
通常,开发环境下,src目录(也就是源代码所在的目录)是包含在classpath中的,
而 在tomcat下,classpath其一指向:WEB-INF/classes目录。
另:如需使用绝对路径则可使用方法:
1 public InputStream getVoiceFile() throws FileNotFoundException { 2 return new FileInputStream("D:/test.wav"); 3 }
下面看一个完整的项目相关代码(struts2应用):
action 中的java 部分代码:
1 public InputStream getVoiceFile() throws FileNotFoundException { 2 3 4 return new FileInputStream(this.getCurrentFileFullName()); 5 6 //return ServletActionContext.getServletContext().getResourceAsStream(this.getCurrentFileFullName()); 7 } 8 9 public String voice(){ 10 return "voice"; 11 } 12 13 }
struts.xml中部分代码:
1 <result name="voice" type="stream"> 2 <!-- 下载文件类型 --> 3 <param name="contentType">audio/wav</param> 4 <param name="inputName">inputStream</param> 5 <!-- 下载的InputStream流,Struts2自己动对应Action中的getVoiceFile方法,该方法必须返回InputStream 类型 --> 6 <param name="inputName">voiceFile</param> 7 <param name="bufferSize">2048</param> 8 </result>
jsp页面部分代码:
1 <s:iterator value="voiceList" status="index" id="fielInfo"> 2 <tr> 3 4 <td><s:property value="fileName"/></td> 5 <td><embed src="Controller_voice.action?currentFileFullName=<s:property value="http://www.mamicode.com/fileFullName" />" autostart=false /></td> 6 7 </tr> 8 </s:iterator>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。