アプリケーションではなく、他のドライブにある画像を表示しようとしています。しかし、出力が得られず、アクションが呼び出されません。間違いを指摘してください。
jsp
<img src="<s:url var="profilePic" action="download">
<s:param name="fid" value="test"/>
</s:url>" alt="logo" />
アクション
public class DownloadAction extends ActionSupport implements ServletRequestAware{
private HttpServletRequest req;
@Action(value="download", results = { @Result(location="/index.jsp", type="stream",
params={"contentType","application/octet-stream","inputName","fileInputStream","bufferSize","1024"}
), @Result(name="input", location="/index.jsp")
})
public String download() throws Exception {
//File theFile = new File("c:\\shareapp\\admin",getReq().getParameter("fid"));
try{
System.out.println("inside");
FileInputStream inputStream=FileUtils.openInputStream(new File("c:\\shareapp\\admin",getReq().getParameter("fid")));
}catch(Exception ce)
{
System.out.println(ce);
}
return SUCCESS;
}
//getters & setters
実際には、ファイルをサムネイルとしてロードしたいです。どんな助けでも大歓迎です。