我希望能够获取我所在的jsp文件的String值,以便我可以将它分配给Java中的临时String值。
像这样:
String pageName = "*myCurrentJSPPage.jsp*"
我不想要整个文件路径。
请帮助。
答案 0 :(得分:0)
可以通过HttpServletRequest
的{{3}}方法来实现。
${pageContext.request.servletPath}
getServletPath()
taglib可用于在必要时提取扩展名。
答案 1 :(得分:-1)
试试这个
<%
String currentjspName = this.getClass().getSimpleName();
System.out.println("*** currentjspName :"+currentjspName);
%>