jsp 中获取 <input type = file id ="filePath" name= "filePath"> 的路径
在jsp中通过<%Stringpath=request.getParameter("filePath");//结果为null%>...
在jsp中通过 <% String path = request.getParameter("filePath"); //结果为null%>
展开
1个回答
2012-02-19
展开全部
一般来说都是得到文件名,路径得不到。你这种情况不清楚。试试下面的
//test.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
</HEAD>
<BODY>
<form name="form1" action="test.jsp">
<input type="file" name="filepath">
<input type="submit" value="send">
</form>
</BODY>
</HTML>
//test.jsp
<%@page contentType="text/html;charset=gbk"%>
<%
String path=request.getParameter("filepath");
out.print(path);
%>
//test.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
</HEAD>
<BODY>
<form name="form1" action="test.jsp">
<input type="file" name="filepath">
<input type="submit" value="send">
</form>
</BODY>
</HTML>
//test.jsp
<%@page contentType="text/html;charset=gbk"%>
<%
String path=request.getParameter("filepath");
out.print(path);
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询