当前位置 : 主页 > 编程语言 > java >

如何在JSP中导入CSS文件?

来源:互联网 收集:自由互联 发布时间:2021-06-25
%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中使用标签

网友评论