%String path = application.getRealPath("/");%%@page import="index.css" % 我正在使用上面的String路径来获取我的目录的真实路径.我想从css文件夹导入index.css. 在JSP中是否可以执行类似%@ page import = path“
<%String path = application.getRealPath("/");%> <%@page import="index.css" %>
我正在使用上面的String路径来获取我的目录的真实路径.我想从css文件夹导入index.css.
在JSP中是否可以执行类似<%@ page import = path“css / index.css”%>的操作.或者有更简单的方法吗?
我想你想把index.css文件包含到jsp中.试试这个
<jsp:include page="index.css"/>
要么
<%@include file="/WEB-INF/include/header.jsp"%>
但我建议在HTML中使用标签