gpt4 book ai didi

java - 文件包含不起作用

转载 作者:行者123 更新时间:2023-12-01 15:37:30 26 4
gpt4 key购买 nike

下面的代码在 Netbeans 中引发错误,指出 include 语句未关闭。我尝试了一些类似 @%> 的东西,但我无法弄清楚发生了什么。我在这里做错了什么?

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><%=request.getAttribute("title")%></title>
</head>
<body>
<%@include file=request.getAttribute("template")%>
</body>
</html>

最佳答案

尝试使用 <jsp:directive.include/> :

<jsp:directive.include file="<%= request.getAttribute("template") %>"/>

根据模板的内容, <jsp:include/> 也可能有效:

<jsp:include path="<%= request.getAttribute("template") %>"/>

关于java - 文件包含不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8649351/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com