Is it possible to instantiate a class and then invoke its methods between scriptlets in JSP? I am getting errors and I don't know why (java class and methods are fine). Any other way to do the same (i just want a string from a method in a class)?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Yes of-course. You can create objects for your classes and access their methods between scriptlets in JSP like this.
<%
Foo foo = new Foo();
foo.method1();
%>
Another way of doing this is using useBeans of jsp to instantiate the class and access its method in scriptlet
<jsp:useBean id = "foo" class = "Foo" />
<%
foo.method1();
%>
回答2:
You must include the page import in the header like so:
<%@ page import="sample.Foo" %>