我是Jsp的新手,我正在使用Spring MVC并尝试显示链接,当链接点击试图从特定文件夹打开文本文件时“href”通常在html页面中工作,当我试图在jsp在控制台中得到这样的错误
Not allowed to load local resource: file:///D:/....txt
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="s"%>
<html>
<head>
</head>
<body style="background-color: wheat;">
<div align="center">
<s:form commandName="salarySlipCommandName">
<a href="D:\.....txt" target="_blank">click</a>
</s:form>
</div>
</body>
</html>
我无法从指定位置打开文本文件,我尝试过多种方式。在这方面请任何人建议我......?