JSP处理指令未关闭(JSP Processing instruction not closed)

2019-08-01 05:13发布

我想包括HTML文件到我的JSP,但我日食show'd这个错误

所包含的文件

<%@include file="includes/head.html" %>

和错误

Processing instruction not closed

而这仅仅是简单的JSP

<%@include file = "includes/head.html" %>

    <form action = "#" method = "POST">
        Username: <input type = "text" name = "username"><br/>
        Password: <input type = "password" name = "password"><br/>
    </form>
</body>
</html>

Answer 1:

全选,退格键,然后按Ctrl + Z恢复。 我的作品。 但人谁知道日食以及可能会提供一些线索,为什么发生这种情况



Answer 2:

这似乎是疯了,但按Ctrl + A,CTRL + X,粘贴,保存代码,错误被清除



Answer 3:

另外,关闭文件,然后再次打开它似乎工作(请记得先保存文档)。



Answer 4:

我尝试阿努拉格Priyadarshi答案,但它没有工作。 但我得到通过重启摆脱错误的日食,ü可能想尝试它,它为我工作。 :)



Answer 5:

通过删除错误文件确实为我工作在保存新文件相同的代码。



Answer 6:

尝试后@给人一种空间。

<%@ include file="includes/head.html" %>.

此外,如果head.html是在其他目录然后绝对路径与启动/或..尝试<%@ include file="/includes/head.html" %>

<%@ include file="../includes/head.html" %>.


文章来源: JSP Processing instruction not closed