包含动态属性值中的文件

我有一个需要使用Java的项目;

<%@include file="content.jsp" %>

在当前的jsp页面中包含一个文件。

但是,我现在需要content.jsp是动态的。

如何用引号替换引号中的所有内容?

所以;

<%@include file=myVariable %>

回答:

除了使用静态包含,还可以使用动态包含,然后可以执行以下操作:

<jsp:include page="<%= myVariable %>" flush="true" />

要么

<jsp:include page="${myVariable}" flush="true" />

以上是 包含动态属性值中的文件 的全部内容, 来源链接: utcz.com/qa/402090.html

回到顶部