如何从外部jsp调用内部类方法或变量?
这是我的index.jsp页面:
<html>
<body>
<%!
public class myclass{
private final int foo = 42;
public int getFoo() {
return foo;
}
}
%>
</body>
</html>
如何在其他jsp页面中调用myclass方法或变量? 请帮我 。
this is my index.jsp page:
<html>
<body>
<%!
public class myclass{
private final int foo = 42;
public int getFoo() {
return foo;
}
}
%>
</body>
</html>
how to call myclass method or variable in other jsp page ?
please help me .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要来自任何“其他”JSP。这些声明应被视为 JSP 的本地声明。如果您需要一个类被多个 JSP 使用,请将其编写为单独的 Java 源文件,编译它,并将其包含在您的 web 应用程序的 WEB-INF/classes 中。
You don't from any "other" JSP. Those declarations should be treated as local to the JSP. If you need a class to be used by multiple JSPs, write it as a separate Java source file, compile it, and include it in your webapp in WEB-INF/classes.
您是否尝试使用类似
<%@ include file="/myFile.jsp" % > 的内容?
???
Did you try to use something like
<%@ include file="/myFile.jsp" % >
???