我刚刚开始学习JSP技术,并遇到了障碍。
如何从<%!中的方法输出HTML? ...%> JSP声明块?
这不起作用:
<%!
void someOutput() {
out.println("Some Output");
}
%>
...
<% someOutput(); %>
服务器说没有“出局”。
U:我知道如何使用此方法重写代码来重写字符串,但有没有办法在&lt;%!中执行此操作。 void(){}%&gt; ?虽然它可能不是最佳的,但它仍然很有趣。
答案 0 :(得分:29)
您不能在指令内使用'out'变量(也不能使用任何其他“预先声明的”scriptlet变量)。
JSP页面由您的Web服务器转换为Java servlet。例如,在tomcats内部,scriptlet中的所有内容(以“&lt;%”开头)和所有静态HTML一起被转换为一个巨大的Java方法,它将您的页面逐行写入名为“out”的JspWriter实例。 。这就是您可以直接在scriptlet中使用“out”参数的原因。另一方面,指令(以“&lt;%!”开头)被转换为单独的Java方法。
作为一个例子,一个非常简单的页面(让我们称之为foo.jsp):
<html>
<head/>
<body>
<%!
String someOutput() {
return "Some output";
}
%>
<% someOutput(); %>
</body>
</html>
最终会看起来像这样(为了清晰起见,忽略了许多细节):
public final class foo_jsp
{
// This is where the request comes in
public void _jspService(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException
{
// JspWriter instance is gotten from a factory
// This is why you can use 'out' directly in scriptlets
JspWriter out = ...;
// Snip
out.write("<html>");
out.write("<head/>");
out.write("<body>");
out.write(someOutput()); // i.e. write the results of the method call
out.write("</body>");
out.write("</html>");
}
// Directive gets translated as separate method - note
// there is no 'out' variable declared in scope
private String someOutput()
{
return "Some output";
}
}
答案 1 :(得分:13)
<%!
private void myFunc(String Bits, javax.servlet.jsp.JspWriter myOut)
{
try{ myOut.println("<div>"+Bits+"</div>"); }
catch(Exception eek) { }
}
%>
...
<%
myFunc("more difficult than it should be",out);
%>
试试这个,它对我有用!
答案 2 :(得分:9)
我想这会有所帮助:
<%!
String someOutput() {
return "Some Output";
}
%>
...
<%= someOutput() %>
无论如何,在视图中包含代码并不是一个好主意。
答案 3 :(得分:9)
您需要做的就是将JspWriter对象作为参数传递给您的方法,即
void someOutput(JspWriter stream)
然后通过以下方式调用:
<% someOutput(out) %>
writer对象是_jspService中的局部变量,因此您需要将其传递给实用程序方法。这同样适用于所有其他内置引用(例如请求,响应,会话)。
了解最新情况的一个好方法是使用Tomcat作为您的服务器,并深入到'work'目录中查找从'jsp'页面生成的'.java'文件。或者在weblogic中,您可以使用'weblogic.jspc'页面编译器来查看请求页面时生成的Java。
答案 4 :(得分:6)
一个简单的替代方案如下:
<%!
String myVariable = "Test";
pageContext.setAttribute("myVariable", myVariable);
%>
<c:out value="myVariable"/>
<h1>${myVariable}</h1>
你可以在jsp代码中以任何方式使用变量
答案 5 :(得分:3)
您可以这样做:
<%!
String myMethod(String input) {
return "test " + input;
}
%>
<%= myMethod("1 2 3") %>
这会将test 1 2 3
输出到页面。
答案 6 :(得分:1)
为时已晚,无法回答,但这有助于其他人
<%!
public void printChild(Categories cat, HttpServletResponse res ){
try{
if(cat.getCategoriesSet().size() >0){
res.getWriter().write("") ;
}
}catch(Exception exp){
}
}
%>
答案 7 :(得分:-2)
您可以这样做:
<%
out.print("<p>Hey!</p>");
out.print("<p>How are you?</p>");
%>