资源简介
这是一个用struts2做的文件上传和下载的例子!
代码片段和文件信息
package action;
import java.io.InputStream;
import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.ActionSupport;
public class DownAction extends ActionSupport{
private String inputPath;
public void setInputPath(String inputPath) {
this.inputPath = inputPath;
}
public InputStream getInputStream() throws Exception{
return ServletActionContext.getServletContext().getResourceAsStream(inputPath);
}
@Override
public String execute() throws Exception {
// TODO Auto-generated method stub
return “su“;
}
}
- 上一篇:TreeView 单击一节点弹出相应的窗体
- 下一篇:6s模型 大气校正资料
评论
共有 条评论