从 jsp 调用 html 文件

Call a html file from a jsp

我想从 jsp 文件调用 html 文件 index.html。 我尝试通过以下两种方法添加,但它不起作用。

<%@ include  file="C:\Users\vishal.tripathi\Desktop\bio-integration\bio-integration\verify\verify\index.html" %>
<c:import url="file:///C:/Users/vishal.tripathi/Desktop/bio-integration/bio-integration/verify/verify/index.html" />

任何人都可以帮助我在jsp中添加它的方法和确切位置。

你可以试试这个把html调用成jsp,你只需要改变url中的路径,我推荐你使用相对路径。

 <c:import var="html" url="${file.name}.html" />
 <c:out value="${html}" escapeXml="false" />