概述
JSP代码:
<form id="formid" action="poiAction!insertMsg.do" method="post">
<input type="file" id="filepath" name="filepath"/>
<!-- <input type="hidden" id="filename" name="text"/> -->
</form>
<input type="submit" value="上传" οnclick="insert()"/>
<input type="button" value="下载">
<script type="text/javascript">
function insert(){
//获取选择文件的路径
//var txt=document.getElementById("filename");
//txt.value=document.getElementById("filepath").value;
//alert(txt.value);
//发送请求
if(document.getElementById("filepath")!=null){
document.forms[0].submit();
}
};
</script>
一开始我想的是利用document.getElementById().value来获取路径,alert之后发觉是能获取到的。这里先不考虑不同浏览器的问题。
后来之所以没这样是因为,如果你用的是struts2的话,你这样获取再在action用request.getParameter("filepath");就像是Servlet的用法,根本没体现到Struts2的特点。
所以,直接一个form表单控件把input file标签套住,用document.forms[0].submit();提交
Action类如何获取?
只需要声明filepath(与你input标签的name对应),写个get/set方法就可以直接获取
代码如下:
public String getFilepath() {
return filepath;
}
this.filepath = filepath;
}
System.out.println(filepath);
最后
以上就是无情白昼为你收集整理的SSM框架下,Jsp页面提交请求及action获取值得问题的全部内容,希望文章能够帮你解决SSM框架下,Jsp页面提交请求及action获取值得问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复