保存在文件夹中的jsp打开文本文件:不允许加载本地资源:file:/// D:/....txt

时间:2016-12-08 11:28:17

标签: spring hibernate jsp

我是Jsp的新手,我正在使用Spring MVC并尝试显示链接,当链接点击试图从特定文件夹打开文本文件时“href”通常在html页面中工作,当我试图在jsp在控制台中得到这样的错误

Not allowed to load local resource: file:///D:/....txt

我的jsp页面看起来像这样

<%@ 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>

我无法从指定位置打开文本文件,我尝试过多种方式。在这方面请任何人建议我......?

0 个答案:

没有答案