这是我要问的例子
<%
String variable="Value";
out.println("<input type='hidden' value="<%=variable%>" "/);
%>
答案 0 :(得分:0)
在Scriptlet中,您可以使用如下的java语法:
<%
String variable="Value";
out.println("<input type='hidden' value='" + variable + "'>");
%>
但你应该尝试避免使用scriptlet。阅读更多: How to avoid Java code in JSP files?