有一个来自外部 url(比如http://sample.com/header.html
)的标题内容。我想在我的 jsp 文件中包含这个标题,实际上我可以在我的 jsp 页面中看到这个标题。当我运行我的 jsp 页面时,这个标题 url 应该显示在我的 jsp 页面的顶部。
如果您能帮助我,我将不胜感激!
<%@ page contentType="text/html; charset=ISO-8859-1"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<c:import url="https://www.google.com/?gws_rd=ssl" />
</body>
</html>